robbooker

Palladino/Booker Time Sessions

The Palladino/Booker Time Sessions script will allow you to highlight certain periods of time during the day that are best suited to your trading. Add the script to your chart as many times as you like to highlight as many Time Sessions as you like.

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?
study("Palladino/Booker Time Sessions", overlay=true)

s = input(title="Session", type=session, defval="24x7")

int = tostring(interval)

timeinrange(res, sess) => time(res, sess) != 0
regular = blue
notrading = na
sessioncolor = timeinrange("1", s) ? regular : na
bgcolor(sessioncolor, transp=75)