I've an indicator that I would like to plot 3 different line colors. I'm having issues under PlotBruses[0][0]..... for the NeutralBrush. How would the correct way to be to include all 3 brushes?
lineColor[0] = <code>? 1 : <code>? 0 : <code>? -1 : lineColor[1]; PlotBrushes[0][0] = lineColor[0] == 1 ? BullBrush : BearBrush; PlotBrushes[0][0] = lineColor[0] == 0 : NeutralBrush;

Comment