emaLowerPeriod = input.int(9, minval=1, title='EMA Düşük Periyotlar için')
emaLower = ta.ema(input(close), emaLowerPeriod)
plot(emaLower, color=color.new(color.fuchsia, 0), linewidth=2, title='EMA Düşük Periyot')
showEMA2 = input(false, title='EMA - Orta Periyotlar için')
emaMediumPeriod = input.int(27, minval=1, title='EMA Orta Periyotlar için')
emaMedium = ta.ema(input(close), emaMediumPeriod)
plot(showEMA2 and emaMedium ? emaMedium : na, color=color.new(color.aqua, 0), linewidth=2, title='EMA Orta Periyotlar için')
hmaLongPeriod = input.int(200, minval=1, title='HMA Uzun Periyotlar için')
hmaLong = ta.hma(input(close), hmaLongPeriod)
plot(hmaLong, color=color.new(color.gray, 0), linewidth=2, title='HMA Uzun Periyotlar için')
isCloseAbove = close > emaLower and close > hmaLong isCloseBelow = close < emaLower and close < hmaLong isCloseBetween = close > emaLower and close < hmaLong or close < emaLower and close > hmaLong
isNeutral = close > pSAR_DownValue and isCloseBelow or close < pSAR_DownValue and isCloseAbove
Long = '-=-=-ALIŞ DETAY-=-=- ' Short = '-=-=-SATIŞ DETAY-=-=- '
pp1 = '\nAldıktan sonra geçen BAR : ' + str.tostring(ta.barssince(Buy), '##.##') pp2 = '\nSattıktan sonra geçen BAR : ' + str.tostring(ta.barssince(Sell), '##.##')
ברוח TradingView אמיתית, מחבר הסקריפט הזה פרסם אותו בקוד פתוח, כך שסוחרים יוכלו להבין ולאמת אותו. כל הכבוד למחבר! אתה יכול להשתמש בו בחינם, אבל השימוש החוזר בקוד זה בפרסום כפוף לכללי הבית. אתה יכול להכניס אותו למועדפים כדי להשתמש בו בגרף.
המידע והפרסומים אינם אמורים להיות, ואינם מהווים, עצות פיננסיות, השקעות, מסחר או סוגים אחרים של עצות או המלצות שסופקו או מאושרים על ידי TradingView. קרא עוד בתנאים וההגבלות.