Hi All,

I'm plotting a series of buy/sell indicators via the PlotShapes()
function.

Sometimes I get multiple signals on the same bar, and I've been trying
to displace the arrows so that upon multiple signals they 'stack' one
above the other... so far I've been using something along the lines of
the following,

Displace_Plot = IIf(PatternA_Plot, TickSize * 10, 0);
PlotShapes( PatternB_Plot * shapeSmallDownTriangle, colorGold, 0, H +
Displace_Plot );

This does kinda work, but depending on the zoom used by AB to scale
the current price data, the arrows stacked one on top of the other can
be just right or have a huge gap between them (sometimes so big the
stacked arrow cannot even be seen on the screen).

Is there a way of getting round this issue...? Any other ideas as to
how to effectively stack multiple signals that can be seen regardless
of the current scaling...?

Many Thanks

Reply via email to