Great oscillator which determines trend and momentum. So accurate it could be used as a stand alone indicator.
Remove the assignPriceColor line in the code if you wish not to have the candles painted.
thinkScript Code
Code:
# EZ Trend & Momentum
# Assembled by BenTen at useThinkScript.com
# Converted from https://www.tradingview.com/script/IzvxaVhB-ROMI2/
declare lower;
def s2 = expAverage(close, 10) - expAverage(close, 24);
plot line = s2;
line.assignValueColor(if s2 <= 0 then color.red else color.green);
assignPriceColor(if s2 <= 0 then color.red else color.green);