I am trying to find a way to plot candles only when that candle is a high-peak candle.
Lets say I compute if the candle is high peak or not via
is_high_peak = (high[1] > high[2]) and (high <= high[1])
Would it be possible to use plotcandle
such that it only display the candles that is_high_peak
is true for them?
Basically I only want to see the candles with an arrow above them