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)