RicardoSantos

[RS]Convergence Divergence Impulse Counter V0

EXPERIMENTAL:
Counts the number of impulses with the same direction within a larger trend.
סקריפט קוד פתוח

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

כתב ויתור

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

רוצה להשתמש בסקריפ זה בגרף?
study(title='[RS]Convergence Divergence Impulse Counter V0', shorttitle='CDIC', overlay=false)
length01 = input(20)
length02 = input(100)
src = input(close)
ma01 = ema(src, length01)
ma02 = ema(src, length02)

cd01 = src - ma01
cd02 = ma01 - ma02

imp = src > ma01 and ma01 > ma02 ? cd01 : src < ma01 and ma01 < ma02 ? cd01 : 0
count = na(count[1]) ? 0 :
        change(crossover(cd02, 0)) > 0 ? 1 :
        change(crossunder(cd02, 0)) > 0 ? -1 :
        count[1] > 0 and change(crossover(cd01, 0)) > 0 ? count[1] + 1 :
        count[1] < 0 and change(crossunder(cd01, 0)) > 0 ? count[1] - 1 :
        count[1]

//plot(series=imp, color=black, style=columns)
//plot(series=cross(cd02, 0) ? 0 : na, color=color(aqua, 0), style=circles, linewidth=4)
plot(series=count, color=black, style=columns)
hline(0)