TradingView
BakwaasTrading
12 Jun 2020 pukul 07.01

Smoothed Sensitive MA 

Crude Oil FuturesNYMEX

Deskripsi

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.

Catatan Rilis

This version handles reversals better.
Lebih lanjut