Remove timeframe from strategy (#13)

This commit is contained in:
Oda
2025-02-26 17:24:59 +07:00
committed by GitHub
parent 298b666a0b
commit 4302bb8435
39 changed files with 299 additions and 288 deletions

View File

@@ -6,7 +6,7 @@ namespace Managing.Domain.Strategies.Base;
public abstract class EmaBaseStrategy : Strategy
{
protected EmaBaseStrategy(string name, Enums.Timeframe timeframe, Enums.StrategyType type) : base(name, timeframe, type)
protected EmaBaseStrategy(string name, Enums.StrategyType type) : base(name, type)
{
}
@@ -29,6 +29,7 @@ public abstract class EmaBaseStrategy : Strategy
});
}
}
return emaList;
}
@@ -36,4 +37,4 @@ public abstract class EmaBaseStrategy : Strategy
{
public double Ema { get; set; }
}
}
}