MagnusTradingGroup

MAGNUS® Cycles

This indicator will help you if you struggle making any profit in bitcoin.
It generates very few signals with very nice profit potential ( around 100% this year ! ).
Perfect tool for longterm swing traders and new traders that need help figuring out the midterm trend.

Use it with these parameters only:
weekly: 13, 5, 12
daily: 92, 21, 96
開源腳本

本著真正的TradingView精神,該腳本的作者將其開源發布,以便交易者可以理解和驗證它。為作者喝彩吧!您可以免費使用它,但在出版物中重複使用此代碼受網站規則的約束。 您可以收藏它以在圖表上使用。

免責聲明

這些資訊和出版物並不意味著也不構成TradingView提供或認可的金融、投資、交易或其他類型的意見或建議。請在使用條款閱讀更多資訊。

想在圖表上使用此腳本?
study(title="MAGNUS® Cycles", shorttitle="MAGNUS® Cycles")
//try these parameters/timeframes:
//weekly: 13,  5, 12
//daily:  92, 21, 96

length = input(92, minval=1, title="Williams %R Length")
upper = highest(length)
lower = lowest(length)
out = 100 * (close - upper) / (upper - lower)

len0 = input(21, minval=1, title="EMA Short Length")
len1 = input(96, minval=1, title="SMA Long Length ")

m0 = ema(out, len0)
m1 = sma(out, len1)

col = m0>m1?aqua:fuchsia

plot(out, color = green)
plot(m0, color = white)
plot(m1, color=orange)
band1 = hline(-20)
band0 = hline(-80)
fill(band1, band0)
bgcolor(col,transp=90)