Unfortunately additional educational reference samples are not available yet, but to move things along it really is fairly simple.
All you have to do is think of it as a multi-series strategy. You use Add() to add the Bid/Ask bar objects and then you can access it just like how you would access different bars in a multi-time frame strategy.
Add("AAPL", PeriodType.Minute, 1, MarketDataType.Ask);
Add("AAPL", PeriodType.Minute, 1, MarketDataType.Bid);

Comment