TradingView
BakwaasTrading
12 jun 2020 07:01

Smoothed Sensitive MA 

Crude Oil FuturesNYMEX

Beskrivning

This moving average is sensitive and reacts quickly to significant price movements, while remaining indifferent to small price moves.

Smoothed Sensitive MA is triple weighted for price changes.

It takes in one parameter "Length", which is used as both
1. the lookback period for price change,
zCC=abs(close-close[len])

and also as
2. the number of periods to be averaged
zSSMA=sum(zCC*zCC*zCC*close,len)/sum(zCC*zCC*zCC,len)

Alternatively, you could modify the script to use two separate parameters for values for 1 and 2.

Versionsinformation

This version handles reversals better.
Mer