//Created by user Hoang Dep Trai //Forex Session Templates Based on EST-New York Time Zone //Special Thanks to TheLark AKA The Coding Genius for helping me with the "On - Off" CheckBoxes in the inputs tab
//Change true to false = You have to turn on, won't show up by default //****Always use lowercase letters doEurOpen = input(defval=true, type = bool, title="Euro Open On") doEurSession = input(defval=true, type = bool, title="Euro Session On") doEurClose = input(defval=true, type = bool, title="Euro Close On")
//You can copy and paste these colors. white - silver - gray - maroon - red - purple - fuchsia - green - lime // olive - yellow - navy - blue - teal - aqua - orange
europeSession = #1E90FF
//****Note ---- Use Military Times --- So 3:00PM = 1500
bgcolor(doEurSession and timeinrange(period, "0815-1215") ? europeSession : na, transp=75)
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.