Madrid

Madrid Donchian Bar

This is the companion bar of the Donchian Channel study. This bar at the bottom of the screen depicts the detrended position of the closing price. This is useful to reduce clutter on the screen and locate the position of the closing price at a glance.
Lime ; Extremely Bullish
Green : Bullish
Maroon : Bearish
Red : Extremely Bearish

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

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

כתב ויתור

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

רוצה להשתמש בסקריפ זה בגרף?
// Hector R. Madrid : 15/JUN/2014 : 23:07 : 2.0 : Madrid Donchian Bar
study("Madrid Donchian Bar", shorttitle="MDonchianBar")

len = input(13)

src = close

highestBar=highest(high, len)
lowestBar=lowest(low, len)
midBar=(highestBar+lowestBar)/2

// Donchian Indicator
mdcb = (src-midBar)/(highestBar-lowestBar)
ceilFloor = mdcb<-0.25 ? -0.5 : mdcb<0 ? -0.25 : mdcb<0.25 ? 0.25 : 0.5

ceilFloorColor = ceilFloor==-0.50 ? red
               : ceilFloor==-0.25 ? maroon
               : ceilFloor==0.25  ? green 
               : ceilFloor==0.50  ? lime
               : yellow               
               
// output
plot(1, linewidth=3, style=columns, color=ceilFloorColor, transp=30)

רעיונות קשורים