I have a rather stupid question, for which I apologize in advance.
I have an automated strategy that I draw pivot lines onto the RSI indicator.
I use the following code:
RSI(14, 3).DrawLine("LowPivot", (CurrentBar - BarOfFirstLow), RSIFirstLow, 0, RSIThirdLow, Color.Green);
The problem is when I load the strategy and look at the chart, I only see the most recently drawn line, since (I assume) it overrides all the previous ones.
Any help will be much appreciated.
Thanks.
Comment