i am using a secondary data series in my indicator ( 60 ticks range ), while the indicator is plotted on a 20 range bar chart.
The indicator works perfectly,, everything is calculated correctly, but my problem is that when i want to plot the signal :
buy[0] = Low[1] - 5 * TickSize ( i want to plot the indicators signal 5 ticks below the previous bars low, on the 20 range chart that the indicator is loaded to )
this plots the signal at the low of the previous 60 ticks bar, instead of the current 20 ticks range bar.
What am i doing wrong?

Comment