Advertisement
AMONRA75

CURRENT PRICE INDICATOR

Jun 2nd, 2023
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. //@version=5
  2. indicator('Current Price Indicator', overlay=true)
  3.  
  4. l = label.new(bar_index, na, 'Price ' + str.tostring(close), color=close >= open ? color.green : color.red, textcolor=color.white, style=label.style_label_down, yloc=yloc.abovebar)
  5.  
  6. label.delete(l[1])
  7.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement