1) I have built a strategy using the strategy builder. I understand that when I use the strategy builder wizard without unlocking the code, I can only utilize one bars object, which means that all my indicators have to be calculated off one interval series (ie: 5min, 10min, 60min). That is, my Stochastics, 20SMA, Bollingers, ADX, DI+ & DI- would all be calculated using the same bars object and hence the same timeframe. Is this correct?
If this is correct, how do I check what is the default primary bars object used to calculate my indicator? Under the conditions builder, I have left "Input Series" as "Default Input". How do I find out what is the default input series interval, and where can I change this default value if I need? Now, I don't even know what sort of interval my TA values are being calculated from, and where I can change the time frame if I need to! Pls advise me!
2) Secondly, I am trying to test my strategy in the strategy analyzer. Here is where things get really confusing, since the strategy analyzer has its own "Data Series" section where the user is given some options: Price Based On, Type, and "Value".
What does this data series section do? If I specify the value as 1(minute), does this change my strategy's primary bars object to a 1 minute bar? Won't this screw up my strategy if my primary bars were originally set as the 60min interval bar type?
If specifying 1min changes my strategy's parameters, the strategy analyzer won't give me an accurate picture of my strategy's performance, since my strategy utilizes 60 min bars to calculate TA values. On the other hand, if I enter 60mins as the "value" under the data series section, the strategy analyzer gives me no results at all.
Can you please clarify if specifying a different value from the strategy's primary bars actually alters the strategy's primary bars (and hence the strategy itself!), or whether the "data series" value in the backtest function simply affects the sensitivity of the backtest?
3) The same confusion arises in the "Strategies" tab in the main window. When I add a new strategy, the "data series" section is identical to the one which shows up in the backtest!
If I specify a value of 1min here, and my strategy code uses 60min bars as the primary bars object, does this (1) screw up my strategy parameters by calculating all my indicators based on a 1min interval series (and hence fundamentally change the strategy)? (2) Or is this simply a means to provide an event trigger for the calculateonbarclose method (in which case, it is irrelevant since I have set "calculateonbarclose" to false)
4) If setting the values in the data series section is a means of specifying the bars objects on which TA values are calculated, how does the backtester and strategy runner accommodate strategies which incorporate different bars objects (multiple timeframe strategies)? Say, if I set 1 min as my value in the "Data Series" section, how will this affect my other bars objects in a multi timeframe strategy?
My confusion in points 2, 3 and 4 revolve around the confusing "data series" section and how specifying a value there (eg: 1min) affects bars objects specified in the strategy code itself (if at all). Some clarification would be very much appreciated!

Comment