I've only started using NT in the last 3 days, so apologies if this is an obvious question. I'm trying to develop a strategy that will look at the values of multiple timeframes of pre-defined indicators (like macd). I've created (via copy) new macd indicators for each of the desired timeframes. In each of these, I've added a new Bar via the Add method in the initialize method; i.e.
Add(PeriodType.Minute, 5). Then, in the OnBarUpdate method, I've added an if statement => if (BarsInProgress == 1) and left the rest of the code alone. I though this would do the trick, but the plots are very sporadic. Appreciate any and all assistance!
Ultimately, I'd like to be able to compare values across each of these as signals.
Thank you,
hbmiles2000

Comment