This simple indicator plots out ICT's New York midnight open price and a vertical divider at that time. 12am NY time is a key level to watch for daytrading and intraday scalping, often providing entry levels and orderblocks. The session time may need to be adjusted for different exchanges, but the default is for most of forex.
It marks out different world markets active timings on the bitcoin charts. You can also modify the script to a strategy and test out different strategies.
//Forex Sessions study("Forex Sessions", shorttitle="SessionsFX", overlay=true) t1 = time(period, "0700-1600") t2 = time(period, "0200-1100") t3 = time(period, "1800-0300") t4 = time(period, "1600-0100") NewYork = na(t1) ? na : green London = na(t2) ? na : red Tokyo = na(t3) ? na : blue Sydney = na(t4) ? na : aqua //white silver gray maroon red purple fuchsia...
Simple indicator showing market hours for New York, London, Sydney and Tokyo. It plots 60 bars in future so you can easily see when certain sessions start or end before it happens. x = gap between plots (adjustable)