mattlacoco

Rhino Trader Colors ribbon

72
EMA Ribbon for Rhino Trader Colors strategy.
- includes 8, 21, 50, 100 and 200 ema in one.

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?
//@version=2
study(title='Rhino Trader Colors ribbon', shorttitle='RT Colors Ribbon', overlay=true)
ema8 = ema(close,8)
ema21 = ema(close,21)
ema50 = ema(close,50)
ema100 = ema(close,100)
ema200 = ema(close,200)

plot(ema8, title="EMA 8", color=black)
plot(ema21, title="EMA 21", color=red)
plot(ema50, title="EMA 50", color=blue)
plot(ema100, title="EMA 100", color=blue)
plot(ema200, title="EMA 200", color=orange)