Thanks for the clarification, a 6 month chart of GTW showing this paintbar is attached.
if Bollinger Bands(20,2).Lower>Keltner Bands(20,1.5).Lower set color to Lime
if Bollinger Bands(20,2).Upper<Keltner Bands(20,1.5).Upper set color to Lime
if (Bollinger Bands(20,2).Upper>Keltner Bands(20,1.5).Upper) AND (Bollinger Bands(20,2).Upper[1]<Keltner Bands(20,1.5).Upper[1]) AND ((MACD(12,26,9)+Momentum(12))/2 > 0) set color to Blue
if (Bollinger Bands(20,2).Upper>Keltner Bands(20,1.5).Upper) AND (Bollinger Bands(20,2).Upper[1]<Keltner Bands(20,1.5).Upper[1]) AND ((MACD(12,26,9)+Momentum(12))/2 < 0) set color to Red
This paintbar gives a heads up when entering the range (green) and then the last paintbar is either red or blue signaling the emergence out of the tight range.
In the meantime, not sure what "EMA of (10,Momentum(12))" means....describe it in prose, I don't know TS stuff. Post a picture....
The EMA of (10,Mom(12)) is a 10 bar length of an exponential moving average using a 12 bar momentum as the input instead of price.
In QuoteTracker, the EMA formula can only specify the number of bars and it's offset on price.
In E-signal, the EMA formula can use input sources from other indicators like momentum.
To create the momentum indicator for the "TTM squeeze", QuoteTracker would need a new EMA indicator which can specify period, shift and an alternate input source (momentum) instead of just price..
-EJG