protected override void OnMarketData (MarketDataEventArgs e)
{
if (e.Volume > 150
&& e.MarketDataType == MarketDataType.DailyLow);
{
EnterLongLimit (Close [0]);
}
}
The above is the code I wrote for this but I think it does not work. Can you give me the instructions on how to write this strategy? Thank you.

Comment