OPEN-SOURCE SCRIPT
Cập nhật

Smoothed Sensitive MA

4 491
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.
Phát hành các Ghi chú
This version handles reversals better.

Thông báo miễn trừ trách nhiệm

Thông tin và các ấn phẩm này không nhằm mục đích, và không cấu thành, lời khuyên hoặc khuyến nghị về tài chính, đầu tư, giao dịch hay các loại khác do TradingView cung cấp hoặc xác nhận. Đọc thêm tại Điều khoản Sử dụng.