{"id":9696,"date":"2021-12-14T21:58:25","date_gmt":"2021-12-14T18:58:25","guid":{"rendered":"https:\/\/orhantekten.com\/?p=9696"},"modified":"2021-12-21T19:24:59","modified_gmt":"2021-12-21T16:24:59","slug":"ichimoku-cloud-auto-fib-extension-ve-ho","status":"publish","type":"post","link":"https:\/\/orhantekten.com\/tr\/ichimoku-cloud-auto-fib-extension-ve-ho\/","title":{"rendered":"TradingView \u00dc\u00e7l\u00fc \u0130ndikat\u00f6r Paketi: Ichimoku Cloud, Auto Fib Extension ve HO"},"content":{"rendered":"\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\"><p>TradingView&#8217;da indikat\u00f6r kullan\u0131m limiti oldu\u011fu i\u00e7in birden fazla indikat\u00f6r\u00fc tek bir indikat\u00f6re \u00e7evirerek daha fazla indikat\u00f6re sahip olabilirsiniz. Bu sayfada <strong>Ichimoku Cloud<\/strong>, <strong>Auto Fib Extension<\/strong> ve<strong> SMA\/EMA <\/strong>vard\u0131r. <\/p><p>Hareketli ortalamalar\u0131n (sma\/ema) ayarlar\u0131n\u0131 ve de\u011ferlerini diledi\u011finiz gibi indikat\u00f6r ayarlar\u0131 k\u0131sm\u0131ndan kodlara m\u00fcdahale etmeden kolay bir \u015fekilde yapabilirsiniz.<\/p><p>\u0130ndikat\u00f6rler g\u00fcncel s\u00fcr\u00fcm versiyon=5 ile kodlanm\u0131\u015ft\u0131r.<\/p><p><\/p><cite>@ohantekten<\/cite><\/blockquote>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\"><p><strong><em>Son g\u00fcncelleme: 17 Aral\u0131k 2021<\/em><\/strong><\/p><cite>CW<\/cite><\/blockquote>\n\n\n\n<h2 class=\"wp-block-heading\">Tradingview \u00fc\u00e7l\u00fc indikat\u00f6r paketi<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>\/\/ \u00a9 ohantekten\n\/\/ This source code is subject to the terms of the Mozilla Public License 2.0 at https:\/\/mozilla.org\/MPL\/2.0\/\n\/\/ \u00a9 orhantekten.com\/tr\/kategori\/indikator\n\/\/ Bu d\u00f6k\u00fcmanda Ichimoku bulutu, auto fib extension ve 9 adet hareketli ortalama vard\u0131r. \n\/\/@version=5\n\nindicator(title='ichimoku+oto fib', shorttitle='ich+fib', overlay=true)\nconversionPeriods = input.int(9, minval=1, title=\"ICH Conversion Line Length\")\nbasePeriods = input.int(26, minval=1, title=\"ICH Base Line Length\")\nlaggingSpan2Periods = input.int(52, minval=1, title=\"ICH Leading Span B Length\")\ndisplacement = input.int(26, minval=1, title=\"ICH Displacement\")\ndonchian(len) => math.avg(ta.lowest(len), ta.highest(len))\nconversionLine = donchian(conversionPeriods)\nbaseLine = donchian(basePeriods)\nleadLine1 = math.avg(conversionLine, baseLine)\nleadLine2 = donchian(laggingSpan2Periods)\nplot(conversionLine, color=#2962FF, title=\"ICH D\u00f6n\u00fc\u015f \u00c7izgisi\")\nplot(baseLine, color=#B71C1C, title=\"ICH Temel \u00c7izgi\")\nplot(close, offset = -displacement + 1, color=#43A047, title=\"ICH Gecikme Aral\u0131\u011f\u0131\")\np1 = plot(leadLine1, offset = displacement - 1, color=#A5D6A7,\n\t title=\"ICH Leading Span A\")\np2 = plot(leadLine2, offset = displacement - 1, color=#EF9A9A,\n\t title=\"ICH Leading Span B\")\nfill(p1, p2, color = leadLine1 > leadLine2 ? color.rgb(67, 160, 71, 90) : color.rgb(244, 67, 54, 90))\n\n\n\n\nsrc = input(title='Source', defval=close)\n\nlength1 = input(5, 'MA 1')\nplot(ta.sma(src, length1), color=color.new(color.red, 0), linewidth=1, title='MA 1')\n\nlength2 = input(10, 'MA 2')\nplot(ta.sma(src, length2), color=color.new(color.blue, 0), linewidth=2, title='MA 2')\n\nlength3 = input(20, 'MA 3')\nplot(ta.sma(src, length3), color=color.new(color.orange, 0), linewidth=3, title='MA 3')\n\nlength4 = input(50, 'MA 4')\nplot(ta.sma(src, length4), color=color.new(color.black, 0), linewidth=2, title='MA 4')\n\n\nlength5 = input(8, 'EMA 1')\nplot(ta.ema(src, length5), color=color.new(color.white, 0), linewidth=2, title='EMA 1')\n\nlength6 = input(13, 'EMA 2')\nplot(ta.ema(src, length6), color=color.new(color.yellow, 0), linewidth=2, title='EMA 2')\n\nlength7 = input(21, 'EMA 3')\nplot(ta.ema(src, length7), color=color.new(color.red, 0), linewidth=2, title='EMA 3')\n\nlength8 = input(30, 'EMA 4')\nplot(ta.ema(src, length8), color=color.new(color.blue, 0), linewidth=2, title='EMA 4')\n\nlength9 = input(50, 'EMA 5')\nplot(ta.ema(src, length9), color=color.new(color.blue, 0), linewidth=2, title='EMA 5')\n\n\ndepthTooltip = \"The minimum number of bars that will be taken into account when calculating the indicator.\"\ndepth = input.int(title=\"Depth\", defval=10, minval=1, inline = \"Pivots\", tooltip=depthTooltip)\nreverse = input(false, \"Reverse\")\nvar extendLeft = input(false, \"Extend Left\u2007\u2007\u2007\u2007|\u2007\u2007\u2007\u2007Extend Right\", inline = \"Extend Lines\")\nvar extendRight = input(true, \"\", inline = \"Extend Lines\")\nvar extending = extend.none\nif extendLeft and extendRight\n    extending := extend.both\nif extendLeft and not extendRight\n    extending := extend.left\nif not extendLeft and extendRight\n    extending := extend.right\nprices = input(true, \"Show Prices\")\nlevels = input(true, \"Show Levels\", inline = \"Levels\")\nlevelsFormat = input.string(\"Values\", \"\", options = &#91;\"Values\", \"Percent\"], inline = \"Levels\")\nlabelsPosition = input.string(\"Left\", \"Labels Position\", options = &#91;\"Left\", \"Right\"])\n\nvar float upperThreshold = 0.236\nvar float lowerThreshold = 1.0\n\nvar line lineLastHL = na\nvar line lineLastLH = na\nvar line lineLast = na\n\nvar float iLastH = 0\nvar float iLastL = 0\nvar float pLastH = 0\nvar float pLastL = 0\n\nvar float&#91;] iPivotsH = array.new_float()\nvar float&#91;] iPivotsL = array.new_float()\nvar float&#91;] pPivotsH = array.new_float()\nvar float&#91;] pPivotsL = array.new_float()\n\nvar isHighLast = false\nvar float startPrice = na\nvar float endPrice = na\nvar float diff = na\n\npivots(src, length, isHigh) =>\n    l2 = length * 2\n    c = nz(src&#91;length])\n    ok = true\n    for i = 0 to l2\n        if isHigh and src&#91;i] > c\n            ok := false\n\n        if not isHigh and src&#91;i] &lt; c\n            ok := false\n    if ok\n        &#91;bar_index&#91;length], c]\n    else\n        &#91;int(na), float(na)]\n&#91;iH, pH] = pivots(high, depth \/ 2, true)\n&#91;iL, pL] = pivots(low, depth \/ 2, false)\n\ncountPivotsH = array.size(iPivotsH)\ncountPivotsL = array.size(iPivotsL)\n\nif countPivotsH > 0 and countPivotsL > 0\n    iLastH := array.get(iPivotsH, countPivotsH-1)\n    iLastL := array.get(iPivotsL, countPivotsL-1)\n    isHighLast := iLastH > iLastL\n    iLastH := 1\n    if isHighLast\n        if not na(iH)\n            pLastH := array.get(pPivotsH, countPivotsH-1)\n            if pH > pLastH\n                array.set(iPivotsH, countPivotsH-1, iH)\n                array.set(pPivotsH, countPivotsH-1, pH)\n            iH := na\n    else\n        if not na(iL)\n            pLastL := array.get(pPivotsL, countPivotsL-1)\n            if pL &lt; pLastL\n                array.set(iPivotsL, countPivotsL-1, iL)\n                array.set(pPivotsL, countPivotsL-1, pL)\n            iL := na\n\nif not na(iH)\n    array.push(iPivotsH, iH)\n    array.push(pPivotsH, pH)\n\nif not na(iL)\n    array.push(iPivotsL, iL)\n    array.push(pPivotsL, pL)\n\npPivotsHCopy = array.copy(pPivotsH)\npPivotsLCopy = array.copy(pPivotsL)\niPivotsHCopy = array.copy(iPivotsH)\niPivotsLCopy = array.copy(iPivotsL)\n\nif barstate.islast\n    for j = bar_index to 0\n        if array.size(iPivotsHCopy) == 0 or array.size(iPivotsLCopy) == 0\n            break\n\n        iLastH := array.pop(iPivotsHCopy)\n        iLastL := array.pop(iPivotsLCopy)\n\n        pLastH := array.pop(pPivotsHCopy)\n        pLastL := array.pop(pPivotsLCopy)\n\n        iPrevPivot = 0.0\n        pPrevPivot = 0.0\n\n        isHighLast := iLastH > iLastL\n\n        if isHighLast\n            for i = array.size(iPivotsHCopy)-1 to 0\n                if i &lt; 0\n                    break\n                else if array.get(iPivotsHCopy, i) &lt; iLastL\n                    break\n                if array.get(pPivotsHCopy, i) > pLastH\n                    iLastH := array.pop(iPivotsHCopy)\n                    pLastH := array.pop(pPivotsHCopy)\n                else\n                    array.remove(iPivotsHCopy, i)\n                    array.remove(pPivotsHCopy, i)\n        else\n            for i = array.size(iPivotsLCopy)-1 to 0\n                if i &lt; 0\n                    break\n                else if array.get(iPivotsLCopy, i) &lt; iLastH\n                    break\n                if array.get(pPivotsLCopy, i) &lt; pLastL\n                    iLastL := array.pop(iPivotsLCopy)\n                    pLastL := array.pop(pPivotsLCopy)\n                else\n                    array.remove(iPivotsLCopy, i)\n                    array.remove(pPivotsLCopy, i)\n\n        if array.size(iPivotsHCopy) == 0 or array.size(iPivotsLCopy) == 0\n            break\n\n        isHighLast := iLastH > iLastL\n\n        if isHighLast\n            iPrevPivot := array.get(iPivotsHCopy, array.size(iPivotsHCopy)-1)\n            pPrevPivot := array.get(pPivotsHCopy, array.size(iPivotsHCopy)-1)\n        else\n            iPrevPivot := array.get(iPivotsLCopy, array.size(iPivotsLCopy)-1)\n            pPrevPivot := array.get(pPivotsLCopy, array.size(iPivotsLCopy)-1)\n\n        if isHighLast\n            startPrice := pPrevPivot\n            endPrice := pLastL\n            diff := math.abs(startPrice - endPrice)\n            if pLastH > endPrice + diff * lowerThreshold or pLastH &lt; endPrice + diff * upperThreshold\n                array.push(iPivotsLCopy, iLastL)\n                array.push(pPivotsLCopy, pLastL)\n                continue\n            line.delete(lineLastHL)\n            line.delete(lineLastLH)\n            line.delete(lineLast)\n            lineLastHL := line.new(int(iPrevPivot), pPrevPivot, int(iLastL), pLastL, color=color.red, width=1, style=line.style_dashed)\n            lineLastLH := line.new(int(iLastL), pLastL, int(iLastH), pLastH, color=color.green, width=1, style=line.style_dashed)\n            lineLast := lineLastLH\n        else\n            startPrice := pPrevPivot\n            endPrice := pLastH\n            diff := math.abs(startPrice - endPrice)\n            if pLastL &lt; endPrice - diff * lowerThreshold or pLastL > endPrice - diff * upperThreshold\n                array.push(iPivotsHCopy, iLastH)\n                array.push(pPivotsHCopy, pLastH)\n                continue\n            line.delete(lineLastHL)\n            line.delete(lineLastLH)\n            line.delete(lineLast)\n            lineLastLH := line.new(int(iPrevPivot), pPrevPivot, int(iLastH), pLastH, color=color.red, width=1, style=line.style_dashed)\n            lineLastHL := line.new(int(iLastH), pLastH, int(iLastL), pLastL, color=color.green, width=1, style=line.style_dashed)\n            lineLast := lineLastHL\n        break\n\n_draw_line(price, col) =>\n    var id = line.new(0, price, 0, price, color=col, width=1, extend=extending)\n    if not na(lineLast)\n        line.set_xy1(id, line.get_x1(lineLast), price)\n        line.set_xy2(id, line.get_x2(lineLast), price)\n\n_draw_label(price, txt, txtColor) =>\n    if not na(price)\n        x = labelsPosition == \"Left\" ? line.get_x1(lineLast) : not extendRight ? line.get_x2(lineLast) : bar_index\n        labelStyle = labelsPosition == \"Left\" ? label.style_label_right : label.style_label_left\n        align = labelsPosition == \"Left\" ? text.align_right : text.align_left\n        labelsAlignStrLeft = txt + '\\n \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f \\n'\n        labelsAlignStrRight = '       ' + txt + '\\n \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f \\n'\n        labelsAlignStr = labelsPosition == \"Left\" ? labelsAlignStrLeft : labelsAlignStrRight\n        var id = label.new(x=x, y=price, text=labelsAlignStr, textcolor=txtColor, style=labelStyle, textalign=align, color=#00000000)\n        label.set_xy(id, x, price)\n        label.set_text(id, labelsAlignStr)\n        label.set_textcolor(id, txtColor)\n\n_wrap(txt) =>\n    \"(\" + str.tostring(txt, \"#.##\") + \")\"\n\n_label_txt(level, price) =>\n    if not na(price)\n        l = levelsFormat == \"Values\" ? str.tostring(level) : str.tostring(level * 100) + \"%\"\n        (levels ? l : \"\") + (prices ? _wrap(price) : \"\")\n\n_crossing_level(sr, r) =>\n    (r > sr and r &lt; sr&#91;1]) or (r &lt; sr and r > sr&#91;1])\n\ndiff := (isHighLast ? -1 : 1) * math.abs(startPrice - endPrice)\noffset = isHighLast ? line.get_y1(lineLastLH) - line.get_y2(lineLastLH) : line.get_y1(lineLastHL) - line.get_y2(lineLastHL)\noffset := (isHighLast ? -1 : 1) * math.abs(offset)\n\nprocessLevel(show, value, colorL) =>\n    float m = value\n    r = (endPrice - offset) + ((reverse ? -1 : 1) * diff * m)\n    if show\n        _draw_line(r, colorL)\n        _draw_label(r, _label_txt(m, r), colorL)\n        if _crossing_level(close, r)\n            alert(\"Autofib: \" + syminfo.ticker + \" crossing level \" + str.tostring(value))\n\nshow_0 = input(true, \"\", inline = \"Level0\")\nvalue_0 = input(0, \"\", inline = \"Level0\")\ncolor_0 = input(#787b86, \"\", inline = \"Level0\")\nprocessLevel(show_0, value_0, color_0)\n\nshow_0_236 = input(true, \"\", inline = \"Level0\")\nvalue_0_236 = input(0.236, \"\", inline = \"Level0\")\ncolor_0_236 = input(#f44336, \"\", inline = \"Level0\")\nprocessLevel(show_0_236, value_0_236, color_0_236)\n\nshow_0_382 = input(true, \"\", inline = \"Level1\")\nvalue_0_382 = input(0.382, \"\", inline = \"Level1\")\ncolor_0_382 = input(#81c784, \"\", inline = \"Level1\")\nprocessLevel(show_0_382, value_0_382, color_0_382)\n\nshow_0_5 = input(true, \"\", inline = \"Level1\")\nvalue_0_5 = input(0.5, \"\", inline = \"Level1\")\ncolor_0_5 = input(#4caf50, \"\", inline = \"Level1\")\nprocessLevel(show_0_5, value_0_5, color_0_5)\n\nshow_0_618 = input(true, \"\", inline = \"Level2\")\nvalue_0_618 = input(0.618, \"\", inline = \"Level2\")\ncolor_0_618 = input(#009688, \"\", inline = \"Level2\")\nprocessLevel(show_0_618, value_0_618, color_0_618)\n\nshow_0_65 = input(false, \"\", inline = \"Level2\")\nvalue_0_65 = input(0.65, \"\", inline = \"Level2\")\ncolor_0_65 = input(#009688, \"\", inline = \"Level2\")\nprocessLevel(show_0_65, value_0_65, color_0_65)\n\nshow_0_786 = input(true, \"\", inline = \"Level3\")\nvalue_0_786 = input(0.786, \"\", inline = \"Level3\")\ncolor_0_786 = input(#64b5f6, \"\", inline = \"Level3\")\nprocessLevel(show_0_786, value_0_786, color_0_786)\n\nshow_1 = input(true, \"\", inline = \"Level3\")\nvalue_1 = input(1, \"\", inline = \"Level3\")\ncolor_1 = input(#787b86, \"\", inline = \"Level3\")\nprocessLevel(show_1, value_1, color_1)\n\nshow_1_272 = input(false, \"\", inline = \"Level4\")\nvalue_1_272 = input(1.272, \"\", inline = \"Level4\")\ncolor_1_272 = input(#81c784, \"\", inline = \"Level4\")\nprocessLevel(show_1_272, value_1_272, color_1_272)\n\nshow_1_414 = input(false, \"\", inline = \"Level4\")\nvalue_1_414 = input(1.414, \"\", inline = \"Level4\")\ncolor_1_414 = input(#f44336, \"\", inline = \"Level4\")\nprocessLevel(show_1_414, value_1_414, color_1_414)\n\nshow_1_618 = input(true, \"\", inline = \"Level5\")\nvalue_1_618 = input(1.618, \"\", inline = \"Level5\")\ncolor_1_618 = input(#2196f3, \"\", inline = \"Level5\")\nprocessLevel(show_1_618, value_1_618, color_1_618)\n\nshow_1_65 = input(false, \"\", inline = \"Level5\")\nvalue_1_65 = input(1.65, \"\", inline = \"Level5\")\ncolor_1_65 = input(#2196f3, \"\", inline = \"Level5\")\nprocessLevel(show_1_65, value_1_65, color_1_65)\n\nshow_2_618 = input(true, \"\", inline = \"Level6\")\nvalue_2_618 = input(2.618, \"\", inline = \"Level6\")\ncolor_2_618 = input(#f44336, \"\", inline = \"Level6\")\nprocessLevel(show_2_618, value_2_618, color_2_618)\n\nshow_2_65 = input(false, \"\", inline = \"Level6\")\nvalue_2_65 = input(2.65, \"\", inline = \"Level6\")\ncolor_2_65 = input(#f44336, \"\", inline = \"Level6\")\nprocessLevel(show_2_65, value_2_65, color_2_65)\n\nshow_3_618 = input(true, \"\", inline = \"Level7\")\nvalue_3_618 = input(3.618, \"\", inline = \"Level7\")\ncolor_3_618 = input(#9c27b0, \"\", inline = \"Level7\")\nprocessLevel(show_3_618, value_3_618, color_3_618)\n\nshow_3_65 = input(false, \"\", inline = \"Level7\")\nvalue_3_65 = input(3.65, \"\", inline = \"Level7\")\ncolor_3_65 = input(#9c27b0, \"\", inline = \"Level7\")\nprocessLevel(show_3_65, value_3_65, color_3_65)\n\nshow_4_236 = input(true, \"\", inline = \"Level8\")\nvalue_4_236 = input(4.236, \"\", inline = \"Level8\")\ncolor_4_236 = input(#e91e63, \"\", inline = \"Level8\")\nprocessLevel(show_4_236, value_4_236, color_4_236)\n\nshow_4_618 = input(false, \"\", inline = \"Level8\")\nvalue_4_618 = input(4.618, \"\", inline = \"Level8\")\ncolor_4_618 = input(#81c784, \"\", inline = \"Level8\")\nprocessLevel(show_4_618, value_4_618, color_4_618)\n\nshow_neg_0_236 = input(false, \"\", inline = \"Level9\")\nvalue_neg_0_236 = input(-0.236, \"\", inline = \"Level9\")\ncolor_neg_0_236 = input(#f44336, \"\", inline = \"Level9\")\nprocessLevel(show_neg_0_236, value_neg_0_236, color_neg_0_236)\n\nshow_neg_0_382 = input(false, \"\", inline = \"Level9\")\nvalue_neg_0_382 = input(-0.382, \"\", inline = \"Level9\")\ncolor_neg_0_382 = input(#81c784, \"\", inline = \"Level9\")\nprocessLevel(show_neg_0_382, value_neg_0_382, color_neg_0_382)\n\nshow_neg_0_618 = input(false, \"\", inline = \"Level10\")\nvalue_neg_0_618 = input(-0.618, \"\", inline = \"Level10\")\ncolor_neg_0_618 = input(#009688, \"\", inline = \"Level10\")\nprocessLevel(show_neg_0_618, value_neg_0_618, color_neg_0_618)\n\nshow_neg_0_65 = input(false, \"\", inline = \"Level10\")\nvalue_neg_0_65 = input(-0.65, \"\", inline = \"Level10\")\ncolor_neg_0_65 = input(#009688, \"\", inline = \"Level10\")\nprocessLevel(show_neg_0_65, value_neg_0_65, color_neg_0_65)\n<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<figure class=\"wp-block-pullquote\"><blockquote><p>Fib Extension yerine Fib Retracement kullanmak isterseniz yukar\u0131daki kod yerine a\u015fa\u011f\u0131dakini kullanabilirsiniz. <\/p><cite>Ichimoku Cloud, Auto Fib Retracement ve HO<\/cite><\/blockquote><\/figure>\n\n\n\n<pre class=\"wp-block-code\"><code>\/\/ \u00a9 ohantekten\r\n\/\/ This source code is subject to the terms of the Mozilla Public License 2.0 at https:\/\/mozilla.org\/MPL\/2.0\/\r\n\/\/ \u00a9 orhantekten.com\/tr\/kategori\/indikator\r\n\/\/ Bu d\u00f6k\u00fcmanda Ichimoku bulutu, auto fib extension ve 9 adet hareketli ortalama vard\u0131r. \r\n\/\/ @version=5\r\n\/\/ich\r\nindicator(title='ichimoku+oto fib', shorttitle='ich+fib', overlay=true)\r\nconversionPeriods = input.int(9, minval=1, title=\"ICH Conversion Line Length\")\r\nbasePeriods = input.int(26, minval=1, title=\"ICH Base Line Length\")\r\nlaggingSpan2Periods = input.int(52, minval=1, title=\"ICH Leading Span B Length\")\r\ndisplacement = input.int(26, minval=1, title=\"ICH Displacement\")\r\ndonchian(len) => math.avg(ta.lowest(len), ta.highest(len))\r\nconversionLine = donchian(conversionPeriods)\r\nbaseLine = donchian(basePeriods)\r\nleadLine1 = math.avg(conversionLine, baseLine)\r\nleadLine2 = donchian(laggingSpan2Periods)\r\nplot(conversionLine, color=#2962FF, title=\"ICH D\u00f6n\u00fc\u015f \u00c7izgisi\")\r\nplot(baseLine, color=#B71C1C, title=\"ICH Temel \u00c7izgi\")\r\nplot(close, offset = -displacement + 1, color=#43A047, title=\"ICH Gecikme Aral\u0131\u011f\u0131\")\r\np1 = plot(leadLine1, offset = displacement - 1, color=#A5D6A7,\r\n\t title=\"ICH Leading Span A\")\r\np2 = plot(leadLine2, offset = displacement - 1, color=#EF9A9A,\r\n\t title=\"ICH Leading Span B\")\r\nfill(p1, p2, color = leadLine1 > leadLine2 ? color.rgb(67, 160, 71, 90) : color.rgb(244, 67, 54, 90))\r\n\r\n\r\n\/\/HO\r\nsrc = input(title='Source', defval=close)\r\n\r\nlength1 = input(5, 'MA 1')\r\nplot(ta.sma(src, length1), color=color.new(color.red, 0), linewidth=1, title='MA 1')\r\n\r\nlength2 = input(10, 'MA 2')\r\nplot(ta.sma(src, length2), color=color.new(color.blue, 0), linewidth=2, title='MA 2')\r\n\r\nlength3 = input(20, 'MA 3')\r\nplot(ta.sma(src, length3), color=color.new(color.orange, 0), linewidth=3, title='MA 3')\r\n\r\nlength4 = input(50, 'MA 4')\r\nplot(ta.sma(src, length4), color=color.new(color.black, 0), linewidth=2, title='MA 4')\r\n\r\nlength5 = input(8, 'EMA 1')\r\nplot(ta.ema(src, length5), color=color.new(color.white, 0), linewidth=2, title='EMA 1')\r\n\r\nlength6 = input(13, 'EMA 2')\r\nplot(ta.ema(src, length6), color=color.new(color.yellow, 0), linewidth=2, title='EMA 2')\r\n\r\nlength7 = input(21, 'EMA 3')\r\nplot(ta.ema(src, length7), color=color.new(color.red, 0), linewidth=2, title='EMA 3')\r\n\r\nlength8 = input(30, 'EMA 4')\r\nplot(ta.ema(src, length8), color=color.new(color.blue, 0), linewidth=2, title='EMA 4')\r\n\r\nlength9 = input(50, 'EMA 5')\r\nplot(ta.ema(src, length9), color=color.new(color.blue, 0), linewidth=2, title='EMA 5')\r\n\r\n\/\/fib \r\n\/\/indicator(\"Auto Fib Retracement\", overlay=true)\r\ndevTooltip = \"Deviation is a multiplier that affects how much the price should deviate from the previous pivot in order for the bar to become a new pivot.\"\r\ndepthTooltip = \"The minimum number of bars that will be taken into account when calculating the indicator.\"\r\n\/\/ pivots threshold\r\nthreshold_multiplier = input.float(title=\"Deviation\", defval=3, minval=0, tooltip=devTooltip)\r\ndev_threshold = ta.atr(10) \/ close * 100 * threshold_multiplier\r\ndepth = input.int(title=\"Depth\", defval=10, minval=1, tooltip=depthTooltip)\r\nreverse = input(false, \"Reverse\")\r\nvar extendLeft = input(false, \"Extend Left\u2007\u2007\u2007\u2007|\u2007\u2007\u2007\u2007Extend Right\", inline = \"Extend Lines\")\r\nvar extendRight = input(true, \"\", inline = \"Extend Lines\")\r\nvar extending = extend.none\r\nif extendLeft and extendRight\r\n    extending := extend.both\r\nif extendLeft and not extendRight\r\n    extending := extend.left\r\nif not extendLeft and extendRight\r\n    extending := extend.right\r\nprices = input(true, \"Show Prices\")\r\nlevels = input(true, \"Show Levels\", inline = \"Levels\")\r\nlevelsFormat = input.string(\"Values\", \"\", options = &#91;\"Values\", \"Percent\"], inline = \"Levels\")\r\nlabelsPosition = input.string(\"Left\", \"Labels Position\", options = &#91;\"Left\", \"Right\"])\r\n\r\nvar line lineLast = na\r\nvar int iLast = 0\r\nvar int iPrev = 0\r\nvar float pLast = 0\r\nvar isHighLast = false \/\/ otherwise the last pivot is a low pivot\r\n\r\npivots(src, length, isHigh) =>\r\n    l2 = length * 2\r\n    c = nz(src&#91;length])\r\n    ok = true\r\n    for i = 0 to l2\r\n        if isHigh and src&#91;i] > c\r\n            ok := false\r\n\r\n        if not isHigh and src&#91;i] &lt; c\r\n            ok := false\r\n    if ok\r\n        &#91;bar_index&#91;length], c]\r\n    else\r\n        &#91;int(na), float(na)]\r\n&#91;iH, pH] = pivots(high, depth \/ 2, true)\r\n&#91;iL, pL] = pivots(low, depth \/ 2, false)\r\n\r\ncalc_dev(base_price, price) =>\r\n    100 * (price - base_price) \/ price\r\n\r\npivotFound(dev, isHigh, index, price) =>\r\n    if isHighLast == isHigh and not na(lineLast)\r\n        \/\/ same direction\r\n        if isHighLast ? price > pLast : price &lt; pLast\r\n            line.set_xy2(lineLast, index, price)\r\n            &#91;lineLast, isHighLast]\r\n        else\r\n            &#91;line(na), bool(na)]\r\n    else \/\/ reverse the direction (or create the very first line)\r\n        if math.abs(dev) > dev_threshold\r\n            \/\/ price move is significant\r\n            id = line.new(iLast, pLast, index, price, color=color.gray, width=1, style=line.style_dashed)\r\n            &#91;id, isHigh]\r\n        else\r\n            &#91;line(na), bool(na)]\r\n\r\nif not na(iH)\r\n    dev = calc_dev(pLast, pH)\r\n    &#91;id, isHigh] = pivotFound(dev, true, iH, pH)\r\n    if not na(id)\r\n        if id != lineLast\r\n            line.delete(lineLast)\r\n        lineLast := id\r\n        isHighLast := isHigh\r\n        iPrev := iLast\r\n        iLast := iH\r\n        pLast := pH\r\nelse\r\n    if not na(iL)\r\n        dev = calc_dev(pLast, pL)\r\n        &#91;id, isHigh] = pivotFound(dev, false, iL, pL)\r\n        if not na(id)\r\n            if id != lineLast\r\n                line.delete(lineLast)\r\n            lineLast := id\r\n            isHighLast := isHigh\r\n            iPrev := iLast\r\n            iLast := iL\r\n            pLast := pL\r\n\r\n_draw_line(price, col) =>\r\n    var id = line.new(iLast, price, bar_index, price, color=col, width=1, extend=extending)\r\n    if not na(lineLast)\r\n        line.set_xy1(id, line.get_x1(lineLast), price)\r\n        line.set_xy2(id, line.get_x2(lineLast), price)\r\n\r\n\r\n_draw_label(price, txt, txtColor) =>\r\n    x = labelsPosition == \"Left\" ? line.get_x1(lineLast) : not extendRight ? line.get_x2(lineLast) : bar_index\r\n    labelStyle = labelsPosition == \"Left\" ? label.style_label_right : label.style_label_left\r\n    align = labelsPosition == \"Left\" ? text.align_right : text.align_left\r\n    labelsAlignStrLeft = txt + '\\n \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f \\n'\r\n    labelsAlignStrRight = '       ' + txt + '\\n \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f  \u200f \\n'\r\n    labelsAlignStr = labelsPosition == \"Left\" ? labelsAlignStrLeft : labelsAlignStrRight\r\n    var id = label.new(x=x, y=price, text=labelsAlignStr, textcolor=txtColor, style=labelStyle, textalign=align, color=#00000000)\r\n    label.set_xy(id, x, price)\r\n    label.set_text(id, labelsAlignStr)\r\n    label.set_textcolor(id, txtColor)\r\n\r\n_wrap(txt) =>\r\n    \"(\" + str.tostring(txt, \"#.##\") + \")\"\r\n\r\n_label_txt(level, price) =>\r\n    l = levelsFormat == \"Values\" ? str.tostring(level) : str.tostring(level * 100) + \"%\"\r\n    (levels ? l : \"\") + (prices ? _wrap(price) : \"\")\r\n\r\n_crossing_level(sr, r) =>\r\n    (r > sr and r &lt; sr&#91;1]) or (r &lt; sr and r > sr&#91;1])\r\n\r\nstartPrice = reverse ? line.get_y1(lineLast) : pLast\r\nendPrice = reverse ? pLast : line.get_y1(lineLast)\r\n\r\niHL = startPrice > endPrice\r\ndiff = (iHL ? -1 : 1) * math.abs(startPrice - endPrice)\r\n\r\nprocessLevel(show, value, colorL) =>\r\n    float m = value\r\n    r = startPrice + diff * m\r\n    if show\r\n        _draw_line(r, colorL)\r\n        _draw_label(r, _label_txt(m, r), colorL)\r\n        if _crossing_level(close, r)\r\n            alert(\"Autofib: \" + syminfo.ticker + \" crossing level \" + str.tostring(value))\r\n\r\nshow_0 = input(true, \"\", inline = \"Level0\")\r\nvalue_0 = input(0, \"\", inline = \"Level0\")\r\ncolor_0 = input(#787b86, \"\", inline = \"Level0\")\r\nprocessLevel(show_0, value_0, color_0)\r\n\r\nshow_0_236 = input(true, \"\", inline = \"Level0\")\r\nvalue_0_236 = input(0.236, \"\", inline = \"Level0\")\r\ncolor_0_236 = input(#f44336, \"\", inline = \"Level0\")\r\nprocessLevel(show_0_236, value_0_236, color_0_236)\r\n\r\nshow_0_382 = input(true, \"\", inline = \"Level1\")\r\nvalue_0_382 = input(0.382, \"\", inline = \"Level1\")\r\ncolor_0_382 = input(#81c784, \"\", inline = \"Level1\")\r\nprocessLevel(show_0_382, value_0_382, color_0_382)\r\n\r\nshow_0_5 = input(true, \"\", inline = \"Level1\")\r\nvalue_0_5 = input(0.5, \"\", inline = \"Level1\")\r\ncolor_0_5 = input(#4caf50, \"\", inline = \"Level1\")\r\nprocessLevel(show_0_5, value_0_5, color_0_5)\r\n\r\nshow_0_618 = input(true, \"\", inline = \"Level2\")\r\nvalue_0_618 = input(0.618, \"\", inline = \"Level2\")\r\ncolor_0_618 = input(#009688, \"\", inline = \"Level2\")\r\nprocessLevel(show_0_618, value_0_618, color_0_618)\r\n\r\nshow_0_65 = input(false, \"\", inline = \"Level2\")\r\nvalue_0_65 = input(0.65, \"\", inline = \"Level2\")\r\ncolor_0_65 = input(#009688, \"\", inline = \"Level2\")\r\nprocessLevel(show_0_65, value_0_65, color_0_65)\r\n\r\nshow_0_786 = input(true, \"\", inline = \"Level3\")\r\nvalue_0_786 = input(0.786, \"\", inline = \"Level3\")\r\ncolor_0_786 = input(#64b5f6, \"\", inline = \"Level3\")\r\nprocessLevel(show_0_786, value_0_786, color_0_786)\r\n\r\nshow_1 = input(true, \"\", inline = \"Level3\")\r\nvalue_1 = input(1, \"\", inline = \"Level3\")\r\ncolor_1 = input(#787b86, \"\", inline = \"Level3\")\r\nprocessLevel(show_1, value_1, color_1)\r\n\r\nshow_1_272 = input(false, \"\", inline = \"Level4\")\r\nvalue_1_272 = input(1.272, \"\", inline = \"Level4\")\r\ncolor_1_272 = input(#81c784, \"\", inline = \"Level4\")\r\nprocessLevel(show_1_272, value_1_272, color_1_272)\r\n\r\nshow_1_414 = input(false, \"\", inline = \"Level4\")\r\nvalue_1_414 = input(1.414, \"\", inline = \"Level4\")\r\ncolor_1_414 = input(#f44336, \"\", inline = \"Level4\")\r\nprocessLevel(show_1_414, value_1_414, color_1_414)\r\n\r\nshow_1_618 = input(true, \"\", inline = \"Level5\")\r\nvalue_1_618 = input(1.618, \"\", inline = \"Level5\")\r\ncolor_1_618 = input(#2196f3, \"\", inline = \"Level5\")\r\nprocessLevel(show_1_618, value_1_618, color_1_618)\r\n\r\nshow_1_65 = input(false, \"\", inline = \"Level5\")\r\nvalue_1_65 = input(1.65, \"\", inline = \"Level5\")\r\ncolor_1_65 = input(#2196f3, \"\", inline = \"Level5\")\r\nprocessLevel(show_1_65, value_1_65, color_1_65)\r\n\r\nshow_2_618 = input(true, \"\", inline = \"Level6\")\r\nvalue_2_618 = input(2.618, \"\", inline = \"Level6\")\r\ncolor_2_618 = input(#f44336, \"\", inline = \"Level6\")\r\nprocessLevel(show_2_618, value_2_618, color_2_618)\r\n\r\nshow_2_65 = input(false, \"\", inline = \"Level6\")\r\nvalue_2_65 = input(2.65, \"\", inline = \"Level6\")\r\ncolor_2_65 = input(#f44336, \"\", inline = \"Level6\")\r\nprocessLevel(show_2_65, value_2_65, color_2_65)\r\n\r\nshow_3_618 = input(true, \"\", inline = \"Level7\")\r\nvalue_3_618 = input(3.618, \"\", inline = \"Level7\")\r\ncolor_3_618 = input(#9c27b0, \"\", inline = \"Level7\")\r\nprocessLevel(show_3_618, value_3_618, color_3_618)\r\n\r\nshow_3_65 = input(false, \"\", inline = \"Level7\")\r\nvalue_3_65 = input(3.65, \"\", inline = \"Level7\")\r\ncolor_3_65 = input(#9c27b0, \"\", inline = \"Level7\")\r\nprocessLevel(show_3_65, value_3_65, color_3_65)\r\n\r\nshow_4_236 = input(true, \"\", inline = \"Level8\")\r\nvalue_4_236 = input(4.236, \"\", inline = \"Level8\")\r\ncolor_4_236 = input(#e91e63, \"\", inline = \"Level8\")\r\nprocessLevel(show_4_236, value_4_236, color_4_236)\r\n\r\nshow_4_618 = input(false, \"\", inline = \"Level8\")\r\nvalue_4_618 = input(4.618, \"\", inline = \"Level8\")\r\ncolor_4_618 = input(#81c784, \"\", inline = \"Level8\")\r\nprocessLevel(show_4_618, value_4_618, color_4_618)\r\n\r\nshow_neg_0_236 = input(false, \"\", inline = \"Level9\")\r\nvalue_neg_0_236 = input(-0.236, \"\", inline = \"Level9\")\r\ncolor_neg_0_236 = input(#f44336, \"\", inline = \"Level9\")\r\nprocessLevel(show_neg_0_236, value_neg_0_236, color_neg_0_236)\r\n\r\nshow_neg_0_382 = input(false, \"\", inline = \"Level9\")\r\nvalue_neg_0_382 = input(-0.382, \"\", inline = \"Level9\")\r\ncolor_neg_0_382 = input(#81c784, \"\", inline = \"Level9\")\r\nprocessLevel(show_neg_0_382, value_neg_0_382, color_neg_0_382)\r\n\r\nshow_neg_0_618 = input(false, \"\", inline = \"Level10\")\r\nvalue_neg_0_618 = input(-0.618, \"\", inline = \"Level10\")\r\ncolor_neg_0_618 = input(#009688, \"\", inline = \"Level10\")\r\nprocessLevel(show_neg_0_618, value_neg_0_618, color_neg_0_618)\r\n\r\nshow_neg_0_65 = input(false, \"\", inline = \"Level10\")\r\nvalue_neg_0_65 = input(-0.65, \"\", inline = \"Level10\")\r\ncolor_neg_0_65 = input(#009688, \"\", inline = \"Level10\")\r\nprocessLevel(show_neg_0_65, value_neg_0_65, color_neg_0_65)<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>TradingView&#8217;da indikat\u00f6r kullan\u0131m limiti oldu\u011fu i\u00e7in birden fazla indikat\u00f6r\u00fc tek bir indikat\u00f6re \u00e7evirerek daha fazla indikat\u00f6re sahip olabilirsiniz. Bu sayfada Ichimoku Cloud, Auto Fib Extension&#8230;<\/p>\n<div class=\"more-link-wrapper\"><a class=\"more-link\" href=\"https:\/\/orhantekten.com\/tr\/ichimoku-cloud-auto-fib-extension-ve-ho\/\">Devam\u0131n\u0131 okuyun<span class=\"screen-reader-text\">TradingView \u00dc\u00e7l\u00fc \u0130ndikat\u00f6r Paketi: Ichimoku Cloud, Auto Fib Extension ve HO<\/span><\/a><\/div>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[478,474],"tags":[475,476,477],"class_list":["post-9696","post","type-post","status-publish","format-standard","hentry","category-consolewriteline","category-indikator","tag-indikator","tag-indikator-paketi","tag-tradingview","entry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>TradingView \u00dc\u00e7l\u00fc \u0130ndikat\u00f6r Paketi: Ichimoku Cloud, Auto Fib Extension ve HO - Orhan TEKTEN<\/title>\n<meta name=\"description\" content=\"Tradingview \u00e7oklu indikat\u00f6r paketi. \u00dc\u00e7 ve daha fazla indikat\u00f6r\u00fc (g\u00f6stergeyi) ayn\u0131 anda \u00fccretsiz kullan\u0131n.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/orhantekten.com\/tr\/ichimoku-cloud-auto-fib-extension-ve-ho\/\" \/>\n<meta property=\"og:locale\" content=\"tr_TR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"TradingView \u00dc\u00e7l\u00fc \u0130ndikat\u00f6r Paketi: Ichimoku Cloud, Auto Fib Extension ve HO - Orhan TEKTEN\" \/>\n<meta property=\"og:url\" content=\"https:\/\/orhantekten.com\/tr\/ichimoku-cloud-auto-fib-extension-ve-ho\/\" \/>\n<meta property=\"og:site_name\" content=\"Orhan TEKTEN\" \/>\n<meta property=\"article:published_time\" content=\"2021-12-14T18:58:25+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-12-21T16:24:59+00:00\" \/>\n<meta name=\"author\" content=\"orhantekten\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@ohantekten\" \/>\n<meta name=\"twitter:site\" content=\"@ohantekten\" \/>\n<meta name=\"twitter:label1\" content=\"Yazan:\" \/>\n\t<meta name=\"twitter:data1\" content=\"orhantekten\" \/>\n\t<meta name=\"twitter:label2\" content=\"Tahmini okuma s\u00fcresi\" \/>\n\t<meta name=\"twitter:data2\" content=\"19 dakika\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/orhantekten.com\\\/tr\\\/ichimoku-cloud-auto-fib-extension-ve-ho\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/orhantekten.com\\\/tr\\\/ichimoku-cloud-auto-fib-extension-ve-ho\\\/\"},\"author\":{\"name\":\"orhantekten\",\"@id\":\"https:\\\/\\\/orhantekten.com\\\/tr\\\/#\\\/schema\\\/person\\\/f25e14faf6505b88f2e6f2261599dd78\"},\"headline\":\"TradingView \u00dc\u00e7l\u00fc \u0130ndikat\u00f6r Paketi: Ichimoku Cloud, Auto Fib Extension ve HO\",\"datePublished\":\"2021-12-14T18:58:25+00:00\",\"dateModified\":\"2021-12-21T16:24:59+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/orhantekten.com\\\/tr\\\/ichimoku-cloud-auto-fib-extension-ve-ho\\\/\"},\"wordCount\":123,\"publisher\":{\"@id\":\"https:\\\/\\\/orhantekten.com\\\/tr\\\/#\\\/schema\\\/person\\\/f25e14faf6505b88f2e6f2261599dd78\"},\"keywords\":[\"indikat\u00f6r\",\"indikat\u00f6r paketi\",\"tradingview\"],\"articleSection\":[\"Console.WriteLine\",\"\u0130ndikat\u00f6r\"],\"inLanguage\":\"tr\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/orhantekten.com\\\/tr\\\/ichimoku-cloud-auto-fib-extension-ve-ho\\\/\",\"url\":\"https:\\\/\\\/orhantekten.com\\\/tr\\\/ichimoku-cloud-auto-fib-extension-ve-ho\\\/\",\"name\":\"TradingView \u00dc\u00e7l\u00fc \u0130ndikat\u00f6r Paketi: Ichimoku Cloud, Auto Fib Extension ve HO - Orhan TEKTEN\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/orhantekten.com\\\/tr\\\/#website\"},\"datePublished\":\"2021-12-14T18:58:25+00:00\",\"dateModified\":\"2021-12-21T16:24:59+00:00\",\"description\":\"Tradingview \u00e7oklu indikat\u00f6r paketi. \u00dc\u00e7 ve daha fazla indikat\u00f6r\u00fc (g\u00f6stergeyi) ayn\u0131 anda \u00fccretsiz kullan\u0131n.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/orhantekten.com\\\/tr\\\/ichimoku-cloud-auto-fib-extension-ve-ho\\\/#breadcrumb\"},\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/orhantekten.com\\\/tr\\\/ichimoku-cloud-auto-fib-extension-ve-ho\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/orhantekten.com\\\/tr\\\/ichimoku-cloud-auto-fib-extension-ve-ho\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Ana sayfa\",\"item\":\"https:\\\/\\\/orhantekten.com\\\/tr\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"TradingView \u00dc\u00e7l\u00fc \u0130ndikat\u00f6r Paketi: Ichimoku Cloud, Auto Fib Extension ve HO\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/orhantekten.com\\\/tr\\\/#website\",\"url\":\"https:\\\/\\\/orhantekten.com\\\/tr\\\/\",\"name\":\"Orhan TEKTEN\",\"description\":\"Bisiklet\u00e7ilerin iyi bildi\u011fi bir s\u00f6z vard\u0131r; \u201cG\u00fczel manzaralar sana gelmez, sen onlara s\u00fcreceksin\u2026\u201d \ud83d\ude42\",\"publisher\":{\"@id\":\"https:\\\/\\\/orhantekten.com\\\/tr\\\/#\\\/schema\\\/person\\\/f25e14faf6505b88f2e6f2261599dd78\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/orhantekten.com\\\/tr\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"tr\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/orhantekten.com\\\/tr\\\/#\\\/schema\\\/person\\\/f25e14faf6505b88f2e6f2261599dd78\",\"name\":\"orhantekten\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"tr\",\"@id\":\"https:\\\/\\\/orhantekten.com\\\/tr\\\/wp-content\\\/uploads\\\/2021\\\/12\\\/cropped-profil-600.png\",\"url\":\"https:\\\/\\\/orhantekten.com\\\/tr\\\/wp-content\\\/uploads\\\/2021\\\/12\\\/cropped-profil-600.png\",\"contentUrl\":\"https:\\\/\\\/orhantekten.com\\\/tr\\\/wp-content\\\/uploads\\\/2021\\\/12\\\/cropped-profil-600.png\",\"width\":512,\"height\":512,\"caption\":\"orhantekten\"},\"logo\":{\"@id\":\"https:\\\/\\\/orhantekten.com\\\/tr\\\/wp-content\\\/uploads\\\/2021\\\/12\\\/cropped-profil-600.png\"},\"description\":\"Stratejinize \u00f6zel haz\u0131rlanm\u0131\u015f trade algoritmalar\u0131 ile kolay kullan\u0131ml\u0131 indikat\u00f6rlere sahip olun: ConsoleWriteLine\",\"sameAs\":[\"https:\\\/\\\/orhantekten.com\\\/tr\\\/\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"TradingView \u00dc\u00e7l\u00fc \u0130ndikat\u00f6r Paketi: Ichimoku Cloud, Auto Fib Extension ve HO - Orhan TEKTEN","description":"Tradingview \u00e7oklu indikat\u00f6r paketi. \u00dc\u00e7 ve daha fazla indikat\u00f6r\u00fc (g\u00f6stergeyi) ayn\u0131 anda \u00fccretsiz kullan\u0131n.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/orhantekten.com\/tr\/ichimoku-cloud-auto-fib-extension-ve-ho\/","og_locale":"tr_TR","og_type":"article","og_title":"TradingView \u00dc\u00e7l\u00fc \u0130ndikat\u00f6r Paketi: Ichimoku Cloud, Auto Fib Extension ve HO - Orhan TEKTEN","og_url":"https:\/\/orhantekten.com\/tr\/ichimoku-cloud-auto-fib-extension-ve-ho\/","og_site_name":"Orhan TEKTEN","article_published_time":"2021-12-14T18:58:25+00:00","article_modified_time":"2021-12-21T16:24:59+00:00","author":"orhantekten","twitter_card":"summary_large_image","twitter_creator":"@ohantekten","twitter_site":"@ohantekten","twitter_misc":{"Yazan:":"orhantekten","Tahmini okuma s\u00fcresi":"19 dakika"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/orhantekten.com\/tr\/ichimoku-cloud-auto-fib-extension-ve-ho\/#article","isPartOf":{"@id":"https:\/\/orhantekten.com\/tr\/ichimoku-cloud-auto-fib-extension-ve-ho\/"},"author":{"name":"orhantekten","@id":"https:\/\/orhantekten.com\/tr\/#\/schema\/person\/f25e14faf6505b88f2e6f2261599dd78"},"headline":"TradingView \u00dc\u00e7l\u00fc \u0130ndikat\u00f6r Paketi: Ichimoku Cloud, Auto Fib Extension ve HO","datePublished":"2021-12-14T18:58:25+00:00","dateModified":"2021-12-21T16:24:59+00:00","mainEntityOfPage":{"@id":"https:\/\/orhantekten.com\/tr\/ichimoku-cloud-auto-fib-extension-ve-ho\/"},"wordCount":123,"publisher":{"@id":"https:\/\/orhantekten.com\/tr\/#\/schema\/person\/f25e14faf6505b88f2e6f2261599dd78"},"keywords":["indikat\u00f6r","indikat\u00f6r paketi","tradingview"],"articleSection":["Console.WriteLine","\u0130ndikat\u00f6r"],"inLanguage":"tr"},{"@type":"WebPage","@id":"https:\/\/orhantekten.com\/tr\/ichimoku-cloud-auto-fib-extension-ve-ho\/","url":"https:\/\/orhantekten.com\/tr\/ichimoku-cloud-auto-fib-extension-ve-ho\/","name":"TradingView \u00dc\u00e7l\u00fc \u0130ndikat\u00f6r Paketi: Ichimoku Cloud, Auto Fib Extension ve HO - Orhan TEKTEN","isPartOf":{"@id":"https:\/\/orhantekten.com\/tr\/#website"},"datePublished":"2021-12-14T18:58:25+00:00","dateModified":"2021-12-21T16:24:59+00:00","description":"Tradingview \u00e7oklu indikat\u00f6r paketi. \u00dc\u00e7 ve daha fazla indikat\u00f6r\u00fc (g\u00f6stergeyi) ayn\u0131 anda \u00fccretsiz kullan\u0131n.","breadcrumb":{"@id":"https:\/\/orhantekten.com\/tr\/ichimoku-cloud-auto-fib-extension-ve-ho\/#breadcrumb"},"inLanguage":"tr","potentialAction":[{"@type":"ReadAction","target":["https:\/\/orhantekten.com\/tr\/ichimoku-cloud-auto-fib-extension-ve-ho\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/orhantekten.com\/tr\/ichimoku-cloud-auto-fib-extension-ve-ho\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Ana sayfa","item":"https:\/\/orhantekten.com\/tr\/"},{"@type":"ListItem","position":2,"name":"TradingView \u00dc\u00e7l\u00fc \u0130ndikat\u00f6r Paketi: Ichimoku Cloud, Auto Fib Extension ve HO"}]},{"@type":"WebSite","@id":"https:\/\/orhantekten.com\/tr\/#website","url":"https:\/\/orhantekten.com\/tr\/","name":"Orhan TEKTEN","description":"Bisiklet\u00e7ilerin iyi bildi\u011fi bir s\u00f6z vard\u0131r; \u201cG\u00fczel manzaralar sana gelmez, sen onlara s\u00fcreceksin\u2026\u201d \ud83d\ude42","publisher":{"@id":"https:\/\/orhantekten.com\/tr\/#\/schema\/person\/f25e14faf6505b88f2e6f2261599dd78"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/orhantekten.com\/tr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"tr"},{"@type":["Person","Organization"],"@id":"https:\/\/orhantekten.com\/tr\/#\/schema\/person\/f25e14faf6505b88f2e6f2261599dd78","name":"orhantekten","image":{"@type":"ImageObject","inLanguage":"tr","@id":"https:\/\/orhantekten.com\/tr\/wp-content\/uploads\/2021\/12\/cropped-profil-600.png","url":"https:\/\/orhantekten.com\/tr\/wp-content\/uploads\/2021\/12\/cropped-profil-600.png","contentUrl":"https:\/\/orhantekten.com\/tr\/wp-content\/uploads\/2021\/12\/cropped-profil-600.png","width":512,"height":512,"caption":"orhantekten"},"logo":{"@id":"https:\/\/orhantekten.com\/tr\/wp-content\/uploads\/2021\/12\/cropped-profil-600.png"},"description":"Stratejinize \u00f6zel haz\u0131rlanm\u0131\u015f trade algoritmalar\u0131 ile kolay kullan\u0131ml\u0131 indikat\u00f6rlere sahip olun: ConsoleWriteLine","sameAs":["https:\/\/orhantekten.com\/tr\/"]}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/orhantekten.com\/tr\/wp-json\/wp\/v2\/posts\/9696","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/orhantekten.com\/tr\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/orhantekten.com\/tr\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/orhantekten.com\/tr\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/orhantekten.com\/tr\/wp-json\/wp\/v2\/comments?post=9696"}],"version-history":[{"count":0,"href":"https:\/\/orhantekten.com\/tr\/wp-json\/wp\/v2\/posts\/9696\/revisions"}],"wp:attachment":[{"href":"https:\/\/orhantekten.com\/tr\/wp-json\/wp\/v2\/media?parent=9696"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/orhantekten.com\/tr\/wp-json\/wp\/v2\/categories?post=9696"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/orhantekten.com\/tr\/wp-json\/wp\/v2\/tags?post=9696"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}