I'm having problems getting historical data when running the BasicTemplateFuturesHistoryAlgorithm.

I'm using the '"live-interactive" config

Realtime quotes work fine, but history always returns 0 records when i run the examaple

I'm able to get the data from IB in other ways so must be something to do with my config in some way. Any ideas appreciated.

public override void OnSecuritiesChanged ( SecurityChanges changes ) { foreach ( var change in changes.AddedSecurities ) { var history = History ( change.Symbol, 10, Resolution.Minute ); foreach ( var data in history.OrderByDescending ( x => x.Time ).Take ( 3 ) ) { Log ( "History: " + data.Symbol.Value + ": " + data.Time + " > " + data.Close ); } } }