UnknownUnicorn468659

Day Of The Week

Very simple script, which is also publicly available and found on the web by the way.
More visually appealing way of seeing what time it is. Works best around 15 minute charts. Doesn't work well on high timeframes.
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="Day Of The Week", shorttitle="Day of the week", overlay=true)
c = #fc1687
bgColor =(dayofweek == monday) ? color(c, 10):
    (dayofweek == tuesday) ? color(c, 30) :
    (dayofweek == wednesday) ? color(c, 50) :
    (dayofweek == thursday) ? color(c, 70) :
    (dayofweek == friday) ? color(c, 90) :
    color(black, 0)
bgcolor(color=bgColor)