UnknownUnicorn468659

Timezone Sessions Indicator

Basic timezones and sessions indicator

I have mine collapsed down to a minimum height and it serves only to indicate the time in a more visual way.
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(title="TZSes", shorttitle="Timezones Sessions")
// Timezones, Sessions
t1 = time(period, "0700-1500")
t2 = time(period, "1200-2000")
t3= time(period, "2300-0700")
trueday= time(period, "0500-0501")

TD = na(trueday) ? na: #ffffff90
London = na(t1) ? na : #ff990090
NY = na(t2) ? na : #0099ff90
Tokyo = na(t3) ? na: #cc339990

bgcolor(London, title="London")
bgcolor(NY, title="New York")
bgcolor(Tokyo, title="Tokyo")
bgcolor(TD, title="True Day")