K kmg526 Member VIP Jan 16, 2021 #1 I am making a strategy and have it all in place...but I need the arrows to be further above the candles...anyone know how to accomplish that?
I am making a strategy and have it all in place...but I need the arrows to be further above the candles...anyone know how to accomplish that?
rad14733 Well-known member VIP Jan 17, 2021 #2 If the arrow is pointing at high you could add an offset to something like high = 0.01 to move it up one cent... Upvote 0 Downvote
If the arrow is pointing at high you could add an offset to something like high = 0.01 to move it up one cent...
SuryaKiranC Well-known member Jan 17, 2021 #3 Code: def offset = 1.0 ; plot LowLong = low-offset; LowLong.SetPaintingStrategy(paintingStrategy.ARROW_UP); plot HighShort = High+offset; HighShort.SetPaintingStrategy(paintingStrategy.ARROW_DOWN); Sure this need more conditioning, for whatever your logic needs. Hope this helps. @kmg526 -S Upvote 0 Downvote
Code: def offset = 1.0 ; plot LowLong = low-offset; LowLong.SetPaintingStrategy(paintingStrategy.ARROW_UP); plot HighShort = High+offset; HighShort.SetPaintingStrategy(paintingStrategy.ARROW_DOWN); Sure this need more conditioning, for whatever your logic needs. Hope this helps. @kmg526 -S
K kmg526 Member VIP Jan 17, 2021 #4 rad14733 said: If the arrow is pointing at high you could add an offset to something like high = 0.01 to move it up one cent... Click to expand... Thank I'll try that. @SuryaKiranC Thanks I will try that too. Upvote 0 Downvote
rad14733 said: If the arrow is pointing at high you could add an offset to something like high = 0.01 to move it up one cent... Click to expand... Thank I'll try that. @SuryaKiranC Thanks I will try that too.