TradingView
ChrisMoody
Oct 28, 2014 4:29 PM

CM_DayOfWeek All Instruments V2 

Australian Dollar/Japanese YenFXCM

Description

Updated Code That Highlights Bars Based On Days Of The Week.

Works On Daily and Intra-Day Bars.

Works on All Instruments. Stocks, Forex, Futures, Bitcoin.

Shows Correct Trading Sessions!!!

Ability to Turn On/Off Each Day Of The Week via Inputs Panel.
Comments
ChannelFisher
Hey Chris,
This only colors Tuesday and that is when Monday is picked.
Checking any of the other days, does nothing.
Thanks,
CF
anacondabitch
you really need to learn astronomy ... all colors are wrong + i added sat and sun

//Created By ChrisMoody on 5-2-2014 - Updated on 10-28-2014
// modified by anacondabitch on 1-21-2018... follow me on tradingview
//Updates include Code now works for Stocks, Forex, Futures, bitcoin etc.
//Highlights Bars Based on Correct Trading Session.
//Colors Bars for Stocks Monday-Friday
study("CM_DayOfWeek_V2", overlay=true)
disMon = input(true, title="Highlight Monday?")
disTue = input(true, title="Highlight Tuesday?")
disWed = input(true, title="Highlight Wednesday?")
disThur = input(true, title="Highlight Thursday?")
disFri = input(true, title="Highlight Friday?")
disSat = input(true, title="Highlight Saturday?")
disSun = input(true, title="Highlight Sunday?")

isMon() => dayofweek(time('D')) == monday and close ? 1 : 0
isTue() => dayofweek(time('D')) == tuesday and close ? 1 : 0
isWed() => dayofweek(time('D')) == wednesday and close ? 1 : 0
isThu() => dayofweek(time('D')) == thursday and close ? 1 : 0
isFri() => dayofweek(time('D')) == friday and close ? 1 : 0
isSat() => dayofweek(time('D')) == saturday and close ? 1 : 0
isSun() => dayofweek(time('D')) == sunday and close ? 1 : 0

barcolor(disMon and isMon() ? (isMon() ? aqua : na) : na)
barcolor(disTue and isTue() ? (isTue() ? green : na) : na)
barcolor(disWed and isWed() ? (isWed() ? purple : na) : na)
barcolor(disThur and isThu() ? (isThu() ? yellow : na) : na)
barcolor(disFri and isFri() ? (isFri() ? fuchsia : na) : na)
barcolor(disSat and isSat() ? (isSat() ? gray : na) : na)
barcolor(disSun and isSun() ? (isSun() ? orange : na) : na)
cryptob4c
TraderMau
Hi ChisMoody
There is some function that allows me to show only one or two previous periods and not the whole story
A-shot
I wonder why this is not a standard at TV.... i always needed some indicator where one ends and other starts
ChrisMoody
Glad I could show you an example.
Cadman10
Nice idea Chris
ChrisMoody
Thanks
More