1

Here is my current pine script plotting opens and closes:

plot(swt ? weekOpen : na, title="Weekly Open", style=line, linewidth=2, color=green,transp=0)
plot(swt ? weekClose  : na, title="Weekly Close", style=line, linewidth=2, color=red,transp=0)
plot(spw ? monthClose : na, title="Monthly Close", style=circles, linewidth=3, color=black, transp=0)

This is what it looks like: enter image description here

I want the style to be a line and behave like the circles, except not being circles because they are not very accurate. I don't want the changing values to join up, how do I do this?

This is what my script looks like on MT4 (different code): enter image description here

Kevin A.
  • 99
  • 2
  • 2
  • 10

0 Answers0