Add("M6E 06-15", PeriodType.Minute, 5);
Add("M6B 06-15", PeriodType.Day, 1);
Add("M6B 06-15", PeriodType.Minute, 5);
Next if i try and create a Bollinger applied to this Spread indicator at a day interval it will display a blank panel, however all other indicators I tried a Bollinger on work fine at the day interval. I can also display the Spread indicator at the day interval without the bollinger applied.
Using the following as an entry condition will not work.
CrossBelow(Spread(BarsArray[3],1, -1, "M6E 06-15", true), Bollinger(Spread(BarsArray[2], 1, -1, "M6E 06-15", true), 2, 365), 1)
Yet if I change the bars array for the Spread under the Bollinger to the following it will work. However this is not a viable workaround since as soon as a couple thousand is reached for the period it takes far to long to run.
CrossBelow(Spread(BarsArray[3],1, -1, "M6E 06-15", true), Bollinger(Spread(BarsArray[3], 1, -1, "M6E 06-15", true), 2, 90000), 1)
It seems that this is specific to the spread indicator, would there be any way to display the Bollinger of the Spread at the day interval?
Thanks

Comment