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, не являются финансовыми, инвестиционными, торговыми или любыми другими рекомендациями. Мы не предоставляем советы по покупке и продаже активов. Подробнее — в Условиях использования 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)