After adding the call Add(), the strategy no longer runs. Using Visual Studio debugger, I found that the strategy fails during the call to Add(). That is, it fails to return. Since the Add() returns a void, it does not return any error code and no exceptions are thrown.
I presumed that a call to Add() would request a download of the data series from the broker, but I am unsure about that. So, I created a chart with both the tick data series and the daily data series on one chart and installed the strategy on the chart in the hope that the Add() method would now have the data series that it needed; however, this also failed.
I installed the example strategy “SampleMultiTimeFrame” on an ES06-11 Daily chart thinking that orders would show up on the daily bars based on the 5-minute and 15-minute data series, but no orders are displayed.
I do not know what else to try. I do not know what I am doing wrong. How do I add another data series to my strategy? Any help would be appreciated.

Comment