When you want to move a plotted arrow you can place it with the 'values_above' or 'values_below' painting strategy constants. See:
http://tda.thinkorswim.com/manual/m...ngStrategy/PaintingStrategy.VALUES_ABOVE.html
Another method has been used that plots a value and assigns an arrow to it with 'SetPaintingStrategy'. An example follows:
http://tda.thinkorswim.com/manual/m...ngStrategy/PaintingStrategy.VALUES_ABOVE.html
Another method has been used that plots a value and assigns an arrow to it with 'SetPaintingStrategy'. An example follows:
Code:
put spacer= 3;
ot arrowdn= if BarNumber() == SundayBar and SundayOpen < FridayClose then high+ticksize()pacer else double.nan;
ArrowDn.SetPaintingStrategy(PaintingStrategy.Arrow_Down);
ArrowDn.SetLineWeight(3);
ArrowDn.SetDefaultColor(Color.Red);