QuantitativeExhaustion

Triple Guppy Cross

GUPPY MULTIPLE ESTIMATED MOVING AVERAGE (EMA) is for Trend Trading. This script uses three sets of crosses to give us an indicator of possible trend reversal. Red cross is the first alert, followed by blue and black. Black cross being the strongest, red cross weakest.

More information about Guppy Trading can be found in the link below
開源腳本

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

免責聲明

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

想在圖表上使用此腳本?
study(title="Triple Guppy Cross", overlay=true)
short = ema(close, 1)
short1 = ema(close, 3)
short2 = ema(close, 5)
short3 = ema(close, 9)
short4 = ema(close, 13)
short5 = ema(close, 18)
long = ema(close, 100)
long1 = ema(close, 110)
long2 = ema(close, 130)
longl1 = ema(close, 150)
longl2 = ema(close, 175)
longl3 = ema(close, 200)
plot(short, color = silver, linewidth = 3)
plot(short1, color = silver, linewidth = 3)
plot(short2, color = silver, linewidth = 3)
plot(short3, color = silver, linewidth = 3)
plot(short4, color = silver, linewidth = 3)
plot(short5, color = silver, linewidth = 3)
plot(long, color = lime, linewidth = 3)
plot(long1, color = lime, linewidth = 3)
plot(long2, color = lime, linewidth = 3)
plot(longl1, color = aqua, linewidth = 3)
plot(longl2, color = aqua, linewidth = 3)
plot(longl3, color = aqua, linewidth = 3)
plot(cross(short, long) ? short : na, style = cross, color = red, linewidth = 4)
plot(cross(short, long1) ? short : na, style = cross, color = red, linewidth = 4)
plot(cross(short, long2) ? short : na, style = cross, color = red, linewidth = 4)
plot(cross(short, longl1) ? short : na, style = cross, color = red, linewidth = 4)
plot(cross(short, longl2) ? short : na, style = cross, color = red, linewidth = 4)
plot(cross(short, longl3) ? short : na, style = cross, color = red, linewidth = 4)
plot(cross(short1, long) ? short : na, style = cross, color = blue, linewidth = 3)
plot(cross(short1, long1) ? short : na, style = cross, color = blue, linewidth = 3)
plot(cross(short1, long2) ? short : na, style = cross, color = blue, linewidth = 3)
plot(cross(short1, longl1) ? short : na, style = cross, color = blue, linewidth = 3)
plot(cross(short1, longl2) ? short : na, style = cross, color = blue, linewidth = 3)
plot(cross(short1, longl3) ? short : na, style = cross, color = blue, linewidth = 3)
plot(cross(short2, long) ? short : na, style = cross, color = blue, linewidth = 3)
plot(cross(short2, long1) ? short : na, style = cross, color = blue, linewidth = 3)
plot(cross(short2, long2) ? short : na, style = cross, color = blue, linewidth = 3)
plot(cross(short2, longl1) ? short : na, style = cross, color = black, linewidth = 3)
plot(cross(short2, longl2) ? short : na, style = cross, color = black, linewidth = 3)
plot(cross(short2, longl3) ? short : na, style = cross, color = black, linewidth = 3)
plot(cross(short3, long) ? short : na, style = cross, color = black, linewidth = 3)
plot(cross(short3, long1) ? short : na, style = cross, color = black, linewidth = 3)
plot(cross(short3, long2) ? short : na, style = cross, color = black, linewidth = 3)
plot(cross(short3, longl1) ? short : na, style = cross, color = black, linewidth = 3)
plot(cross(short3, longl2) ? short : na, style = cross, color = black, linewidth = 3)
plot(cross(short3, longl3) ? short : na, style = cross, color = black, linewidth = 3)
plot(cross(short4, long) ? short : na, style = cross, color = black, linewidth = 3)
plot(cross(short4, long1) ? short : na, style = cross, color = black, linewidth = 3)
plot(cross(short4, long2) ? short : na, style = cross, color = black, linewidth = 3)
plot(cross(short4, longl1) ? short : na, style = cross, color = black, linewidth = 3)
plot(cross(short4, longl2) ? short : na, style = cross, color = black, linewidth = 3)
plot(cross(short4, longl3) ? short : na, style = cross, color = black, linewidth = 3)
plot(cross(short5, long) ? short : na, style = cross, color = black, linewidth = 3)
plot(cross(short5, long1) ? short : na, style = cross, color = black, linewidth = 3)
plot(cross(short5, long2) ? short : na, style = cross, color = black, linewidth = 3)
plot(cross(short5, longl1) ? short : na, style = cross, color = black, linewidth = 3)
plot(cross(short5, longl2) ? short : na, style = cross, color = black, linewidth = 3)
plot(cross(short5, longl3) ? short : na, style = cross, color = black, linewidth = 3)