Add indicators to backtest and bot (#14)
* Add indicators to backtest and bot * Remove
This commit is contained in:
18
src/Managing.Domain/Strategies/Base/StrategiesResultBase.cs
Normal file
18
src/Managing.Domain/Strategies/Base/StrategiesResultBase.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using Skender.Stock.Indicators;
|
||||
|
||||
namespace Managing.Domain.Strategies.Base;
|
||||
|
||||
public class StrategiesResultBase
|
||||
{
|
||||
public List<EmaResult> Ema { get; set; }
|
||||
public List<MacdResult> Macd { get; set; }
|
||||
public List<RsiResult> Rsi { get; set; }
|
||||
public List<StochResult> Stoch { get; set; }
|
||||
public List<StochRsiResult> StochRsi { get; set; }
|
||||
public List<BollingerBandsResult> BollingerBands { get; set; }
|
||||
public List<ChandelierResult> ChandelierShort { get; set; }
|
||||
public List<StcResult> Stc { get; set; }
|
||||
public List<StdDevResult> StdDev { get; set; }
|
||||
public List<SuperTrendResult> SuperTrend { get; set; }
|
||||
public List<ChandelierResult> ChandelierLong { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user