Refactor code structure for improved readability and maintainability
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
using TradingBot.Models;
|
||||
|
||||
namespace TradingBot.Services;
|
||||
|
||||
public interface ITradingStrategy
|
||||
{
|
||||
string Name { get; }
|
||||
Task<TradingSignal> AnalyzeAsync(string symbol, List<MarketPrice> historicalPrices);
|
||||
}
|
||||
Reference in New Issue
Block a user