compiles in indicator also and does not output
protected override void OnMarketDepth(MarketDepthEventArgs e)
{
// Print some data to the Output window
if (e.MarketDataType == MarketDataType.Ask && e.Operation == Operation.Update)
Print("The most recent ask change is " + e.Price + " " + e.Volume);
}

Comment