OPEN-SOURCE SCRIPT

Buy vs Sell Volume

89
//version=5
indicator("Buy vs Sell Volume", overlay=false)

buyVol = close > open ? volume : 0
sellVol = close < open ? volume : 0

plot(buyVol, "Buy Volume", color=color.green)
plot(sellVol, "Sell Volume", color=color.red)

免責事項

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