Diabolicus

Wash Volume Remover [Dia]

26
סקריפט קוד פתוח

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

כתב ויתור

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

רוצה להשתמש בסקריפ זה בגרף?
//@version=2
// Logic:
// determine ratio of current volume to current price range.
// If ratio greater 150% of the average ratio of the past 100 bars then assume wash trade and replace suspicious volume with
// an hypothetical volume equivalent to 75% of the 100 bar average (75% because the average might also be distorted by past wash trades;
// if anyone knows how to replace this with a median value let me know), normalized by current range.
study("Wash Volume Remover [Dia]")
lb=input(100, title = "Lookback Period")
th=input(3.0, minval=1.0, title = "Threshold")
range=high-low
ratio=volume/range
newvol=ratio<th*sma(ratio,lb)?volume:max(0.75*(sma(volume,lb)+sma(ratio,lb)*(range-sma(range,lb))),0)
plot(newvol,color=open<close?green:red,style=columns)