gravity2726
Member
Hi Team, I am using the above SPY EMA indicator, Is there a way to sharpen the edges of this ema
Code:
#
# EMA of SPY on Any Chart
# Assembled by BenTen at useThinkScript.com
#
def spy_price = close("SPY");
input length = 9;
input displace = 0;
plot AvgExp = ExpAverage(spy_price[-displace], length);
AvgExp.SetDefaultColor(GetColor(1));