4X4good

Levels Month

A simple script to plot the High and Low of the Month.
Open-source script

In true TradingView spirit, the author of this script has published it open-source, so traders can understand and verify it. Cheers to the author! You may use it for free, but reuse of this code in a publication is governed by House Rules. You can favorite it to use it on a chart.

Disclaimer

The information and publications are not meant to be, and do not constitute, financial, investment, trading, or other types of advice or recommendations supplied or endorsed by TradingView. Read more in the Terms of Use.

Want to use this script on a chart?
//@version=2
study(title="Levels Month", shorttitle="M",overlay = true)
width = input(2, minval=1)

// make changes to Time Frames here.
// Change "M" to "W" for Weekly high / low
xHigh = security(tickerid,"M", high[0])
xLow  = security(tickerid,"M", low[0])

plot(xLow, color=blue, title="L", style = circles, linewidth = width, offset=0, join=true)
plot(xHigh, color=red, title="H", style = circles, linewidth = width, offset=0, join=true)