My down arrow shape of signal is coming smaller than that of up arrow. I changed shape to triangle, and what - down arrow is not getting away.
/* Plot Buy and Sell Signal Arrows */
/* My Buy and Sell arrays are filled with 1-s for Buy signal bars and -1 for Sell signal bars. Rest all places 0 */
shape = Buy * shapeUpTriangle + Sell * shapeDownTriangle;
PlotShapes( shape, IIf( Buy, colorWhite , colorWhite /*colorGreen, colorRed*/ ), 0, IIf( Buy, Low, High ), offset = -33);
[What I tried]:
Tried changing arrow to triangle, but down arrow remains that way and retains small size.
Searched forum for possible size adjustment possibility, which might have indirectly fixed issue, but I not hit match.
shapeUpTriangle returns 9 and shapeDownTriangle returns 10.
If Buy and Sell return TRUE on same bar then shape = 9 + 10.
So shape returns 19 in that case. So you will get different shape other than triangle then.
So either add different shape of your choice if Buy AND Sell occur on same bar: