See if this addition to the following strategy helps
Ruby:#Arrow ----------------------------------------------------------- def orh_cross = lowestall(if today and close crosses above orhigh then barnumber() else double.nan); def orl_cross = lowestall(if today and close crosses below orlow then barnumber() else double.nan); plot orh_orl = if !isnan(orh_cross) and !isnan(orl_cross) then barnumber()==min(orh_cross,orl_cross) else if isnan(orh_cross) then barnumber()==orl_cross else barnumber()==orh_cross; orh_orl.setpaintingStrategy(paintingstrategy.BOOLEAN_ARROW_down); orh_orl.setlineweight(5); #-----------------------------------------------------------------
@SleepyZ that was just PERFECT. Thank you very much!
One other question: could I separate into two plots?
The reason being - if it crossed the High, I'd want an UP arrow; if it crossed the Low, I'd want a DOWN arrow.
Thank you again!!!