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.

Mã nguồn mở

Với tinh thần TradingView, tác giả của tập lệnh này đã xuất bản nó dưới dạng mã nguồn mở, vì vậy các nhà giao dịch có thể hiểu và xác minh nó. Chúc mừng tác giả! Bạn có thể sử dụng mã này miễn phí, nhưng việc sử dụng lại mã này trong một ấn phẩm chịu sự điều chỉnh của Nội quy nội bộ. Bạn có thể yêu thích nó để sử dụng nó trên biểu đồ.

Thông báo miễn trừ trách nhiệm

Thông tin và ấn phẩm không có nghĩa là và không cấu thành, tài chính, đầu tư, kinh doanh, hoặc các loại lời khuyên hoặc khuyến nghị khác được cung cấp hoặc xác nhận bởi TradingView. Đọc thêm trong Điều khoản sử dụng.

Bạn muốn sử dụng tập lệnh này trên biểu đồ?
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)