harsha.imperial

Accumulation/Distribution With Moving Averages

Helps To Identify the Underlying Trend of Buying & Selling Forces.
オープンソーススクリプト

TradingViewの精神に則り、このスクリプトの作者は、トレーダーが理解し検証できるようにオープンソースで公開しています。作者に敬意を表します!無料で使用することができますが、このコードを投稿で再利用するには、ハウスルールに準拠する必要があります。 お気に入りに登録してチャート上でご利用頂けます。

免責事項

これらの情報および投稿は、TradingViewが提供または保証する金融、投資、取引、またはその他の種類のアドバイスや推奨を意図したものではなく、またそのようなものでもありません。詳しくは利用規約をご覧ください。

チャートでこのスクリプトを利用したいですか?
study(title="Accumulation/Distribution", shorttitle="Accum/Dist", overlay=false)
ad = cum(close==high and close==low or high==low ? 0 : ((2*close-low-high)/(high-low))*volume)
len1 = input(50, minval=1, title="Length")
len2 = input(200, minval=1, title="Length2")
sma1= sma(ad,len1)
sma2= sma(ad,len2)
plot(ad, title = "Accumulation/Distribution", color=olive)
plot(sma1,color=red)
plot(sma2,color=blue)