Variables
open
Current open price.
Example
indicator("Open Price Example", overlay=true)
openPrice = open
prevOpen = open[1]
plot(openPrice, color=color.blue, title="Current Open Price")
plot(prevOpen, color=color.red, title="Previous Open Price")
Type
series float