nboone

Volume Spikes

Plots volume the same as the built-in indicator. However, this indicator colors the column according to its change relative to the previous column. In other words, this indicator displays a green column on increased volume and a red bar on decreased volume.
סקריפט קוד פתוח

ברוח TradingView אמיתית, מחבר הסקריפט הזה פרסם אותו בקוד פתוח, כך שסוחרים יכולים להבין ולאמת אותו. כל הכבוד למחבר! אתה יכול להשתמש בו בחינם, אך שימוש חוזר בקוד זה בפרסום כפוף לכללי הבית. אתה יכול להכניס אותו למועדפים כדי להשתמש בו בגרף.

כתב ויתור

המידע והפרסומים אינם אמורים להיות, ואינם מהווים, עצות פיננסיות, השקעות, מסחר או סוגים אחרים של עצות או המלצות שסופקו או מאושרים על ידי TradingView. קרא עוד בתנאים וההגבלות.

רוצה להשתמש בסקריפ זה בגרף?
//@version=2
// Plots volume the same as the built-in indicator.
// However, this indicator colors the column according to its
// change relative to the previous column.
// In other words, this indicator displays a green column on
// increased volume and a red bar on decreased volume.
study("Volume Spikes")

barColor = if (change(volume)  < 0)
    red
else
    green

plot(volume, color=barColor, style=columns, title="Volume")