Remove timeframe from strategy (#13)
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user