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)