ChrisMoody

Found $13K Profit-Simple Strategy-Highlights Days Of The Week

See 1st Chart Post For Specific Details. Custom Indicator Highlights Bars for Specific Days of Week. Works on Daily Charts and Intraday Charts. Option to Highlight One Day or Multiple Days.

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?
//Created By ChrisMoody on 5-2-2014
//Colors Bars for Forex Monday-Friday
study("CM_DayOfWeek_Forex", overlay=true)
disMon = input(false, title="Highlight Monday?")
disTue = input(false, title="Highlight Tuesday?")
disWed = input(false, title="Highlight Wednesday?")
disThur = input(false, title="Highlight Thursday?")
disFri = input(false, title="Highlight Friday?")

isMon() => dayofweek == sunday and close ? 1 : 0
isTue() => dayofweek == monday and close ? 1 : 0
isWed() => dayofweek == tuesday and close ? 1 : 0
isThu() => dayofweek == wednesday and close ? 1 : 0
isFri() => dayofweek == thursday and close ? 1 : 0

barcolor(disMon and isMon() ? (isMon() ? yellow : na) : na)
barcolor(disTue and isTue() ? (isTue() ? fuchsia : na) : na)
barcolor(disWed and isWed() ? (isWed() ? gray : na) : na)
barcolor(disThur and isThu() ? (isThu() ? orange : na) : na)
barcolor(disFri and isFri() ? (isFri() ? aqua : na) : na)