OPEN-SOURCE SCRIPT

Triple EMA

1883
////////////////////////////////////////////////////////////////////////
// Copyright by ABHISHEK
// This script plots the 4 9 18 EMA's
////////////////////////////////////////////////////////////////////////
study(title="Triple EMA", shorttitle="TEMA",overlay=true)
Length=input(4,minval=1)
Length2=input(9,minval=1)
Length3=input(18,minval=1)
xPrice=close
xEMA1=ema(xPrice,Length)
xEMA2=ema(xPrice,Length2)
xEMA3=ema(xPrice,Length3)
plot(xEMA1,color=blue,title="TEMA1")
plot(xEMA2,color=orange,title="TEMA1")
plot(xEMA3,color=black,title="TEMA1")

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.