oNDa

BTCUSD 7,14,21,28... EMA Bands

BITSTAMP:BTCUSD   Bitcoin
Different EMA Bands that could possibly show some bull-support and I added an SMA365 and multiplicated with 5 what seems to show a possible market cycle top.
Copy the code and check past cycles 2013 and 2017, tell me what you think.

study(title="Daily EMA Daily", shorttitle="Daily EMA Lines", overlay=true)
sma20Dx2 = security(tickerid, 'D', sma(close, 365)*5)
ma7d = security(tickerid, 'D', ema(close, 7))
ma14d = security(tickerid, 'D', ema(close, 14))
ma21d = security(tickerid, 'D', ema(close, 21))
ma28d = security(tickerid, 'D', ema(close, 28))
ma35d = security(tickerid, 'D', ema(close, 35))
ma42d = security(tickerid, 'D', ema(close, 42))
ma49d = security(tickerid, 'D', ema(close, 49))
ma56d = security(tickerid, 'D', ema(close, 56))
ma63d = security(tickerid, 'D', ema(close, 63))
ma200d = security(tickerid, 'W', sma(close, 200))
plot( sma20Dx2, color=#FF00FF, style=line, title="SMA365x5", linewidth=2)
plot( ma7d, color=#FF0000, style=line, title="dailyMMA7", linewidth=2)
plot( ma14d, color=#FF8800, style=line, title="dailyMMA14", linewidth=1)
plot( ma21d, color=#FFFF00, style=line, title="dailyMMA21", linewidth=3)
plot( ma28d, color=#88FF00, style=line, title="dailyMMA28", linewidth=1)
plot( ma35d, color=#00FF00, style=line, title="dailyMMA35", linewidth=1)
plot( ma42d, color=#00FF88, style=line, title="dailyMMA42", linewidth=1)
plot( ma49d, color=#00FFFF, style=line, title="dailyMMA49", linewidth=1)
plot( ma56d, color=#0088FF, style=line, title="dailyMMA56", linewidth=1)
plot( ma63d, color=#0000FF, style=line, title="dailyMMA63", linewidth=1)
plot( ma200d, color=#FF00FF, style=line, title="dailyMMA200", linewidth=3)
Haftungsausschluss

Die Informationen und Veröffentlichungen sind nicht als Finanz-, Anlage-, Handels- oder andere Arten von Ratschlägen oder Empfehlungen gedacht, die von TradingView bereitgestellt oder gebilligt werden, und stellen diese nicht dar. Lesen Sie mehr in den Nutzungsbedingungen.