OPEN-SOURCE SCRIPT

Buy vs Sell Volume

36
//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. קרא עוד ב־תנאי השימוש.