OPEN-SOURCE SCRIPT
更新済 Smoothed Sensitive MA

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.
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.
リリースノート
This version handles reversals better.オープンソーススクリプト
TradingViewの精神に則り、この作者はスクリプトのソースコードを公開しているので、その内容を理解し検証することができます。作者に感謝です!無料でお使いいただけますが、このコードを投稿に再利用する際にはハウスルールに従うものとします。
免責事項
これらの情報および投稿は、TradingViewが提供または保証する金融、投資、取引、またはその他の種類のアドバイスや推奨を意図したものではなく、またそのようなものでもありません。詳しくは利用規約をご覧ください。
オープンソーススクリプト
TradingViewの精神に則り、この作者はスクリプトのソースコードを公開しているので、その内容を理解し検証することができます。作者に感謝です!無料でお使いいただけますが、このコードを投稿に再利用する際にはハウスルールに従うものとします。
免責事項
これらの情報および投稿は、TradingViewが提供または保証する金融、投資、取引、またはその他の種類のアドバイスや推奨を意図したものではなく、またそのようなものでもありません。詳しくは利用規約をご覧ください。