Instruments added in Initialize method like this:
Add("RY 06-10", PeriodType.Tick, 1);
Then I try to catch data I have nothing but only for RY. The RY moves very slow but it moves. I can see b/a changing in DOM. Nothing in code. Help!
I print data like this:
protected override void OnMarketData(MarketDataEventArgs e)
{
if(BarsInProgress == 2)
Print(string.Format("Data {0}", e));

Comment