Im trying to compile a new strategy, I want to include OnMarketData loop, but I still get this error message:
| EPPv2.cs | The type or namespace name 'MarketDataEventArgs' could not be found (are you missing a using directive or an assembly reference?) | CS0246 | 101 | 40 |
The code Im using is this one:
protected override void OnMarketData(MarketDataEventArgs marketDataUpdate)
{ }
Please help!

Comment