LastBattle

Dollar normalized volume

An indicator that multiply the closing price with the current volume. (close X volume)

This will show the relative interest in the underlying asset regardless of the price change over time. For the case of FXCM, when the price fell from $16 to $1, its volume spiked 16x at the same time given the fact that 16x more shares can now be purchased with the same amount of dollar.

Enjoy! and remember to give a thumbs up.

オープンソーススクリプト

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

免責事項

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

チャートでこのスクリプトを利用したいですか?
study("dollar normalized volume", shorttitle="dollar normalized volume")

getVolume(closed, volumed) => closed * volumed

val = getVolume(close, volume)

// draw one that's 3x the price, so we can fake that bars to half itself
//plot(val * 1.5, title='Volume (Invisible)', color=black, transp=100, linewidth=0, style=columns)
plot(val, title='Volume', color=gray, transp=0, linewidth=0, style=columns)