Sayfa 11/16 İlkİlk ... 910111213 ... SonSon
Arama sonucu : 125 madde; 81 - 88 arası.

Konu: Teknik ARŞİV

  1. #81
     Alıntı Originally Posted by rosense Yazıyı Oku
    sürekli adam ^^ eve deyip durulur kim bu adam kimin evine diyenler vardır bilmeyenler için formasyon görseli aşağıda.



    türkçe açıklaması adem ile havva oluyor.
    Oluşan şeklin erkek ve dişi figürlerine benzetilmesinden ortaya çıkmış bir formasyon da diyenler var.
    acsel grafik





































  2. https://tr.tradingview.com/script/hc...ank-Histogram/ kriptolar için tasarlanmış....
    kısaca....50 üstü pozitif trend var...altı negatif trend varmış...anlamında....
    https://www.tradingview.com/x/vLyCxV1F/ örnek görüntü....
    kod hali...
    PHP Code:
     // This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
    // © VanHe1sing

    //@version=5
    indicator("Percent Rank",  shorttitle "PR% â–²â–¼",overlay falsemax_lines_count 72max_labels_count 15)

    int length input.int(60title='Percent Rank Length'tooltip "Percent rank is the percents of how many 
                                 previous values was less than or equal to the current value of given series."
                                 
    group "Percent Rank")

    columns_width 30-input.int(15"Columns Width"minval 10maxval 20)

     
    // Symbol's //
    symbol1  input.symbol("BISTMIXED:XU030D1!""Ticker 1"group "Ticker")
    symbol2 input.symbol("BISTMIXED:XU100""Ticker 2"group "Ticker")
    symbol3 input.symbol("BISTMIXED:GARAN""Ticker 3"group "Ticker")
    symbol4 input.symbol("BISTMIXED:BINHO""Ticker 4"group "Ticker")
    symbol5 input.symbol("BISTMIXED:THYAO""Ticker 5"group "Ticker")
    symbol6 input.symbol("BISTMIXED:KCHOL""Ticker 6"group "Ticker")
    symbol7 input.symbol("BISTMIXED:EREGL""Ticker 7"group "Ticker")
    symbol8 input.symbol("BISTMIXED:BIMAS","Ticker 8"group "Ticker")
    symbol9 input.symbol("BISTMIXED:EKGYO","Ticker 9"group "Ticker")
    symbol10input.symbol("BISTMIXED:TUPRS","Ticker 10",group "Ticker")

    // Request source with percentrank and colors//
    request(symbol)=>
        
    request.security(symbol""ta.percentrank(closelength))
        
    color.from_gradient(p0100color.rgb(255828256), color.rgb(761757955))
        [
    pc]

    // Draw Columns //
    column(indexwidthsrccolor)=>
        
    _1_ chart.point.from_index(bar_index-indexmath.round(src))
        
    _2_ chart.point.from_index(bar_index-index0)

        for 
    2 to 8
            line
    .new(_1__2_width width*icolor color.new(colorcolumns_width*i))


    // Draw desk and Scales //
    d_s()=>
        
    // Desk and Scale Chart Points
        
    bar_back 265
        _1_1 
    chart.point.from_index(bar_index, -2)
        
    _1_2 chart.point.from_index(bar_index-bar_back, -2)

        
    _2_1 chart.point.from_index(bar_index-62)
        
    _2_2 chart.point.from_index(bar_index-bar_back-62)

        
    _3_1 chart.point.from_index(bar_index-bar_back, -2)
        
    _3_2 chart.point.from_index(bar_index-bar_back-62)

        
    _4_1 chart.point.from_index(bar_index, -2)
        
    _4_2 chart.point.from_index(bar_index-62)
        
    // Desk 
        
    d_color color.white
        
    //l1 = line.new(_1_1, _1_2, width = 3, color = color.gray)
        //l2 = line.new(_2_1, _2_2, width = 1, color = d_color)
        //line.new(_3_1, _3_2, width = 3, color = color.gray)
        //line.new(_4_1, _4_2, width = 1, color = d_color)

        //linefill.new(l1, l2, d_color)

        // Scale Lines 
        
    mid_1 chart.point.from_index(bar_index-6100)
        
    mid_2 chart.point.from_index(bar_index-bar_back-6100)
        
    hi_1  chart.point.from_index(bar_index-6100)
        
    hi_2  chart.point.from_index(bar_index-bar_back-6100)

        
    //lm1   = line.new(mid_1, mid_2, width = 1, color = color.gray)
        //lh1   = line.new(hi_1,   hi_2, width = 1, color = color.white)
        //linefill.new(lm1, lh1, #23432423)
        //linefill.new(lm1, l2, #43232323)

    // Draw label //
    lbl(indexsymbolpr)=>
        
    sym str.split(symbol":")
        
    label.new(bar_index-index0sym.get(1), 
                             
    style label.style_label_upper_lefttextcolor color.whitecolor color.rgb(727482))

        
    p_r =  ta.change(prlength>=50 50 length) >= 
               
    str.tostring(math.round(pr))+"% â–²"
             
    str.tostring(math.round(pr))+"% â–¼"
        
    color pr 50 color.rgb(17224717464) : color.rgb(243174174,64)
        
    label.new(bar_index-indexprp_rstyle label.style_nonetextcolor color)

    // Request Tickers and Colors //
    [pr_1color1] = request(symbol1)
    [
    pr_2color2] = request(symbol2)
    [
    pr_3color3] = request(symbol3)
    [
    pr_4color4] = request(symbol4)
    [
    pr_5color5] = request(symbol5)
    [
    pr_6color6] = request(symbol6)
    [
    pr_7color7] = request(symbol7)
    [
    pr_8color8] = request(symbol8)
    [
    pr_9color9] = request(symbol9)
    [
    pr_10,color10] = request(symbol10)

    // Plot //
    if barstate.islast
        d_s
    ()
        
    index 25
        column
    (index,  10,pr_1color1)
        
    column(index*28,pr_2color2)
        
    column(index*38,pr_3color3)
        
    column(index*48,pr_4color4)
        
    column(index*58,pr_5color5)
        
    column(index*68,pr_6color6)
        
    column(index*78,pr_7color7)
        
    column(index*88,pr_8color8)
        
    column(index*98,pr_9color9)
        
    column(index*10,8,pr_10,color10)

        
    // Labels
        
    lbl(index,   symbol1pr_1)
        
    lbl(index*2symbol2pr_2)
        
    lbl(index*3symbol3pr_3)
        
    lbl(index*4symbol4pr_4)
        
    lbl(index*5symbol5pr_5)
        
    lbl(index*6symbol6pr_6)
        
    lbl(index*7symbol7pr_7)
        
    lbl(index*8symbol8pr_8)
        
    lbl(index*9symbol9pr_9)
        
    lbl(index*10,symbol10,pr_10)

    // â–¼â–² // 
    Teknik olarak; yarına gebe olan bugünü yaşamalı ki, yarın, yaşanmış olsun.

  3. Teknik olarak; yarına gebe olan bugünü yaşamalı ki, yarın, yaşanmış olsun.

  4. https://www.tradingview.com/x/JODng0DZ/

    https://tr.tradingview.com/script/WE5MATeB/



    PHP Code:
     //@version=5
    indicator(title='.'overlay=true)

    // Inputs
    input(2title='Key Vaule. \'This changes the sensitivity\'')
    input(10title='ATR Period')
    input(truetitle='Signals from Heikin Ashi Candles')

    xATR ta.atr(c)
    nLoss xATR

    src 
    request.security(ticker.heikinashi(syminfo.tickerid), timeframe.periodcloselookahead=barmerge.lookahead_off) : close

    xATRTrailingStop 
    0.0
    iff_1 
    src nz(xATRTrailingStop[1], 0) ? src nLoss src nLoss
    iff_2 
    src nz(xATRTrailingStop[1], 0) and src[1] < nz(xATRTrailingStop[1], 0) ? math.min(nz(xATRTrailingStop[1]), src nLoss) : iff_1
    xATRTrailingStop 
    := src nz(xATRTrailingStop[1], 0) and src[1] > nz(xATRTrailingStop[1], 0) ? math.max(nz(xATRTrailingStop[1]), src nLoss) : iff_2

    pos 
    0
    iff_3 
    src[1] > nz(xATRTrailingStop[1], 0) and src nz(xATRTrailingStop[1], 0) ? -nz(pos[1], 0)
    pos := src[1] < nz(xATRTrailingStop[1], 0) and src nz(xATRTrailingStop[1], 0) ? iff_3

    xcolor 
    pos == -color.red pos == color.green color.blue

    ema 
    ta.ema(src1)
    above ta.crossover(emaxATRTrailingStop)
    below ta.crossover(xATRTrailingStopema)

    buy src xATRTrailingStop and above
    sell 
    src xATRTrailingStop and below

    barbuy 
    src xATRTrailingStop
    barsell 
    src xATRTrailingStop

    plotshape
    (buytitle='Buy'text='L'style=shape.labeluplocation=location.belowbarcolor=color.new(color.green0), textcolor=color.new(color.white0), size=size.tiny)
    plotshape(selltitle='Sell'text='S'style=shape.labeldownlocation=location.abovebarcolor=color.new(color.red0), textcolor=color.new(color.white0), size=size.tiny)

    barcolor(barbuy color.green na)
    barcolor(barsell color.red na)

    alertcondition(buy'UT Long''UT Long')
    alertcondition(sell'UT Short''UT Short')

    ////////
    // This Pine Script™ code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
    // © Seckin42

    //@version=5
    source close
    windowsize 
    input(title="Window Size"defval=25)
    offset input.float(title="Offset"defval=0.85)
    sigma input.float(title="Sigma"defval=6)
    plot(ta.alma(sourcewindowsizeoffsetsigma))



    atrPeriod input.int(10,    "ATR Length"minval 1)
    factor =    input.float(3.0"Factor",     minval 0.01step 0.01)

    [
    supertrenddirection] = ta.supertrend(factoratrPeriod)

    supertrend := barstate.isfirst na supertrend
    upTrend 
    =    plot(direction supertrend na"Up Trend",   color color.greenstyle plot.style_linebr)
    downTrend =  plot(direction na supertrend"Down Trend"color color.red,   style plot.style_linebr)
    bodyMiddle plot(barstate.isfirst na : (open close) / 2"Body Middle",display display.none)

    fill(bodyMiddleupTrend,   color.new(color.green90), fillgaps false)
    fill(bodyMiddledownTrendcolor.new(color.red,   90), fillgaps false)

    alertcondition(direction[1] > directiontitle='Downtrend to Uptrend'message='The Supertrend value switched from Downtrend to Uptrend ')
    alertcondition(direction[1] < directiontitle='Uptrend to Downtrend'message='The Supertrend value switched from Uptrend to Downtrend')
    alertcondition(direction[1] != directiontitle='Trend Change'message='The Supertrend value switched from Uptrend to Downtrend or vice versa')
    /////// 
    Teknik olarak; yarına gebe olan bugünü yaşamalı ki, yarın, yaşanmış olsun.

  5. https://tr.tradingview.com/script/TW...lden-Strategy/

    https://www.tradingview.com/x/IhUcT7yn/

    kod sade hali...

    PHP Code:
      //@version=5
    // Dr. Abhiram's Golden Strategy //@version=5
    // srflip2011

    indicator(title='DRABHIRAM\'s GOLDEN Strategy'overlay=true)

    // --- inputs
    source close
    TITLE 
    input(falsetitle='Turn on Alerts & Enable Background Color options are based on EMA1 & EMA2 Crossovers, (This button does nothing)')
    turnon2 input(truetitle='Turn on Alerts?')
    colorbars  input(truetitle "Color Bars?")
    colorbars2 input(true,title "Color Bar when price closes under / above Ema 1 & 2?" inline "1")
    barc1 input (color.rgb(038255), "+"inline "1")
    barc2 input(color.orange"-"inline ="1")
    turnon input(truetitle='Turn on Ema 1 & 2?')
    //backgroundcolor = input(false, title='Enable Background Color?')

    //Ema 1 & 2
    len1 input.int(10minval=1title='EMA1')
    len2 input.int(21minval=1title='EMA2')
    ema1 ta.ema(sourcelen1)
    ema2 ta.ema(sourcelen2)
    //---

    cond1 ta.crossover(close,ema1) and ta.crossover(close,ema2)
    cond2 ta.crossunder(close,ema1) and ta.crossunder(close,ema2)

    barcolor(cond1 color.rgb(038255) : cond2 color.orangena)
    //-- Candle Color
    colbar ema1 ema2 color.rgb(1525023) :  color.rgb(25500
    barcolor(colorbars colbar :na)


    // Ema Cross 
    mylong ta.crossover(ema1ema2)
    myshort ta.crossunder(ema1ema2)

    first ta.ema(closelen1)
    sec ta.ema(closelen2)

    // Calculations
    last_long float(na)
    last_short float(na)
    last_long := mylong time nz(last_long[1])
    last_short := myshort time nz(last_short[1])

    in_long last_long last_short 0
    in_short 
    last_short last_long 0

    condlongx 
    in_long
    condlong 
    ta.crossover(condlongx1.9)
    condlongclose ta.crossunder(condlongx1.9)

    condshortx in_short
    condshort 
    ta.crossover(condshortx1.9)
    condshortclose ta.crossover(condshortx1.9)

    // Color Fill
    fcolor first sec #0aff68 : first < sec ? #ff0a5a : #cccccc

    // Plots
    plotshape(turnon2 condlong natitle='Breakout'color=color.new(#112f16, 0), location=location.belowbar, style=shape.labelup, text='L', textcolor=color.new(color.white, 0), size=size.small, offset=1)
    plotshape(turnon2 condshort natitle='Breakdown'color=color.new(#9d0d0d, 0), style=shape.labeldown, text='S', textcolor=color.new(color.white, 0), size=size.small, offset=1) 

    öncekiler ile birleşmiş hali....

    PHP Code:
     //@version=5
    indicator(title='.'overlay=true)

    // Inputs
    input(2title='Key Vaule. \'This changes the sensitivity\'')
    input(10title='ATR Period')
    input(truetitle='Signals from Heikin Ashi Candles')

    xATR ta.atr(c)
    nLoss xATR

    src 
    request.security(ticker.heikinashi(syminfo.tickerid), timeframe.periodcloselookahead=barmerge.lookahead_off) : close

    xATRTrailingStop 
    0.0
    iff_1 
    src nz(xATRTrailingStop[1], 0) ? src nLoss src nLoss
    iff_2 
    src nz(xATRTrailingStop[1], 0) and src[1] < nz(xATRTrailingStop[1], 0) ? math.min(nz(xATRTrailingStop[1]), src nLoss) : iff_1
    xATRTrailingStop 
    := src nz(xATRTrailingStop[1], 0) and src[1] > nz(xATRTrailingStop[1], 0) ? math.max(nz(xATRTrailingStop[1]), src nLoss) : iff_2

    pos 
    0
    iff_3 
    src[1] > nz(xATRTrailingStop[1], 0) and src nz(xATRTrailingStop[1], 0) ? -nz(pos[1], 0)
    pos := src[1] < nz(xATRTrailingStop[1], 0) and src nz(xATRTrailingStop[1], 0) ? iff_3

    xcolor 
    pos == -color.red pos == color.green color.blue

    ema 
    ta.ema(src1)
    above ta.crossover(emaxATRTrailingStop)
    below ta.crossover(xATRTrailingStopema)

    buy src xATRTrailingStop and above
    sell 
    src xATRTrailingStop and below

    barbuy 
    src xATRTrailingStop
    barsell 
    src xATRTrailingStop

    plotshape
    (buytitle='Buy'text='L'style=shape.labeluplocation=location.belowbarcolor=color.new(color.green0), textcolor=color.new(color.white0), size=size.tiny)
    plotshape(selltitle='Sell'text='S'style=shape.labeldownlocation=location.abovebarcolor=color.new(color.red0), textcolor=color.new(color.white0), size=size.tiny)

    barcolor(barbuy color.green na)
    barcolor(barsell color.red na)


    ////////
    // This Pine Script™ code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
    // © Seckin42

    //@version=5
    source close
    windowsize 
    input(title="Window Size"defval=25)
    offset input.float(title="Offset"defval=0.85)
    sigma input.float(title="Sigma"defval=6)
    plot(ta.alma(sourcewindowsizeoffsetsigma))

    atrPeriod input.int(10,    "ATR Length"minval 1)
    factor =    input.float(3.0"Factor",     minval 0.01step 0.01)

    [
    supertrenddirection] = ta.supertrend(factoratrPeriod)

    supertrend := barstate.isfirst na supertrend
    upTrend 
    =    plot(direction supertrend na"Up Trend",   color color.greenstyle plot.style_linebr)
    downTrend =  plot(direction na supertrend"Down Trend"color color.red,   style plot.style_linebr)
    bodyMiddle plot(barstate.isfirst na : (open close) / 2"Body Middle",display display.none)
    //////
    //@version=5
    // Dr. Abhiram's Golden Strategy //@version=5
    // srflip2011

    // --- inputs
    source55 close
    TITLE 
    input(falsetitle='Turn on Alerts & Enable Background Color options are based on EMA1 & EMA2 Crossovers, (This button does nothing)')
    turnon2 input(truetitle='Turn on Alerts?')
    colorbars  input(truetitle "Color Bars?")
    colorbars2 input(true,title "Color Bar when price closes under / above Ema 1 & 2?" inline "1")
    barc1 input (color.rgb(038255), "+"inline "1")
    barc2 input(color.orange"-"inline ="1")
    turnon input(truetitle='Turn on Ema 1 & 2?')
    //backgroundcolor = input(false, title='Enable Background Color?')

    //Ema 1 & 2
    len1 input.int(10minval=1title='EMA1')
    len2 input.int(21minval=1title='EMA2')
    ema1 ta.ema(source55len1)
    ema2 ta.ema(source55len2)
    //---

    cond1 ta.crossover(close,ema1) and ta.crossover(close,ema2)
    cond2 ta.crossunder(close,ema1) and ta.crossunder(close,ema2)

    barcolor(cond1 color.rgb(038255) : cond2 color.orangena)
    //-- Candle Color
    colbar ema1 ema2 color.rgb(1525023) :  color.rgb(25500
    barcolor(colorbars colbar :na)


    // Ema Cross 
    mylong ta.crossover(ema1ema2)
    myshort ta.crossunder(ema1ema2)

    first ta.ema(closelen1)
    sec ta.ema(closelen2)

    // Calculations
    last_long float(na)
    last_short float(na)
    last_long := mylong time nz(last_long[1])
    last_short := myshort time nz(last_short[1])

    in_long last_long last_short 0
    in_short 
    last_short last_long 0

    condlongx 
    in_long
    condlong 
    ta.crossover(condlongx1.9)
    condlongclose ta.crossunder(condlongx1.9)

    condshortx in_short
    condshort 
    ta.crossover(condshortx1.9)
    condshortclose ta.crossover(condshortx1.9)

    // Color Fill
    fcolor first sec #0aff68 : first < sec ? #ff0a5a : #cccccc

    // Plots
    plotshape(turnon2 condlong natitle='Breakout'color=color.new(#112f16, 0), location=location.belowbar, style=shape.labelup, text='L', textcolor=color.new(color.white, 0), size=size.small, offset=1)
    plotshape(turnon2 condshort natitle='Breakdown'color=color.new(#9d0d0d, 0), style=shape.labeldown, text='S', textcolor=color.new(color.white, 0), size=size.small, offset=1)

    ///// 
    Teknik olarak; yarına gebe olan bugünü yaşamalı ki, yarın, yaşanmış olsun.

  6. https://tr.tradingview.com/script/Ze6GlKJO/


    https://tr.tradingview.com/script/LG...es-ChartPrime/ bu da ....olasılık ihtimali...rastlantısal yürüyüş kodu...
    bunu inceleyip...sadeleyip....üste yazılan koda ilave etsek ne olacak bakalım...
    Teknik olarak; yarına gebe olan bugünü yaşamalı ki, yarın, yaşanmış olsun.

Sayfa 11/16 İlkİlk ... 910111213 ... SonSon

Yer İmleri

Yer İmleri

Gönderi Kuralları

  • Yeni konu açamazsınız
  • Konulara cevap yazamazsınız
  • Yazılara ek gönderemezsiniz
  • Yazılarınızı değiştiremezsiniz
  •