How To Plot OHLC Values?
FXC911 – Forex & Crypto News & Insights
Goals
Pine Script Code
//@version=5
indicator("Plot OHLC")
plot(open, color=color.blue)
plot(high, color=color.green)
plot(low, color=color.red)
plot(close, color=color.white)Code Output

Explanation
1. Version Declaration:
2. Indicator Declaration:
3. Plotting Open Value:
4. Plotting High Value:
5. Plotting Low Value:
6. Plotting Close Value:
Keywords
Visit me on:
Last updated