Sayfa 239/301 İlkİlk ... 139189229237238239240241249289 ... SonSon
Arama sonucu : 2407 madde; 1,905 - 1,912 arası.

Konu: Tradingview

  1. üzerinde çalışılan...3 lü sar kodu....
    denemek isteyenler için....güzelleştirip burda yayınlamanız umuduyla...
    PHP Code:
      //@version=5
    indicator("Triple Sar"overlay true)
    //Avarage SAR
    psar(start1inc1maximum1) =>
        
    out1 float(na)
        
    isUpTrend1 bool(na)
        
    maxMin1 float(na)
        
    acc1 float(na)
        
    prev1 float(na)

        if 
    bar_index >= 1
            prev1 
    := out1[1]
            if 
    bar_index == 1
                
    if close close[1]
                    
    isUpTrend1 := true
                    maxMin1 
    := math.max(highhigh[1])
                    
    prev1 := math.min(lowlow[1])
                    
    prev1
                
    else
                    
    isUpTrend1 := false
                    maxMin1 
    := math.min(lowlow[1])
                    
    prev1 := math.max(highhigh[1])
                    
    prev1

                acc1 
    := start1
                acc1
            
    else
                
    isUpTrend1 := isUpTrend1[1]
                
    acc1 := acc1[1]
                
    maxMin1 := maxMin1[1]
                
    maxMin1

            
    if isUpTrend1
                
    if high maxMin1
                    maxMin1 
    := high
                    acc1 
    := math.min(acc1 inc1maximum1)
                    
    acc1
            
    else
                if 
    low maxMin1
                    maxMin1 
    := low
                    acc1 
    := math.min(acc1 inc1maximum1)
                    
    acc1

            
    if na(out1)
                
    out1 := prev1 acc1 * (maxMin1 prev1)
                
    out1

            
    if isUpTrend1
                
    if low <= out1
                    isUpTrend1 
    := false
                    out1 
    := maxMin1
                    maxMin1 
    := low
                    acc1 
    := start1
                    acc1
            
    else
                if 
    high >= out1
                    isUpTrend1 
    := true
                    out1 
    := maxMin1
                    maxMin1 
    := high
                    acc1 
    := start1
                    acc1

            
    if na(out1)
                if 
    isUpTrend1
                    out1 
    := math.min(out1bar_index == low[1] : math.min(low[1], low[2]))
                    
    out1
                
    else
                    
    out1 := math.max(out1bar_index == high[1] : math.max(high[1], high[2]))
                    
    out1

        
    [out1acc1maxMin1isUpTrend1]


    start1 input(0)
    increment1 input(0.1)
    maximum1 input(0.1)
    [
    p1AF1EP1isUpTrend1] = psar(start1increment1maximum1)

    newEP1 EP1 != EP1[1]
    epNew1 newEP1 EP1 na
    plot
    (p1'Stop'style=plot.style_linecolor=isUpTrend1 color.rgb(0230119100) : color.rgb(2558282100), linewidth=1)
    //Fast SAR
    psar0(start10inc10maximum10) =>
        
    out10 float(na)
        
    isUpTrend10 bool(na)
        
    maxMin10 float(na)
        
    acc10 float(na)
        
    prev10 float(na)

        if 
    bar_index >= 1
            prev10 
    := out10[1]
            if 
    bar_index == 1
                
    if close close[1]
                    
    isUpTrend10 := true
                    maxMin10 
    := math.max(highhigh[1])
                    
    prev10 := math.min(lowlow[1])
                    
    prev10
                
    else
                    
    isUpTrend10 := false
                    maxMin10 
    := math.min(lowlow[1])
                    
    prev10 := math.max(highhigh[1])
                    
    prev10

                acc10 
    := start10
                acc10
            
    else
                
    isUpTrend10 := isUpTrend10[1]
                
    acc10 := acc10[1]
                
    maxMin10 := maxMin10[1]
                
    maxMin10

            
    if isUpTrend10
                
    if high maxMin10
                    maxMin10 
    := high
                    acc10 
    := math.min(acc10 inc10maximum10)
                    
    acc10
            
    else
                if 
    low maxMin10
                    maxMin10 
    := low
                    acc10 
    := math.min(acc10 inc10maximum10)
                    
    acc10

            
    if na(out10)
                
    out10 := prev10 acc10 * (maxMin10 prev10)
                
    out10

            
    if isUpTrend10
                
    if low <= out10
                    isUpTrend10 
    := false
                    out10 
    := maxMin10
                    maxMin10 
    := low
                    acc10 
    := start10
                    acc10
            
    else
                if 
    high >= out10
                    isUpTrend10 
    := true
                    out10 
    := maxMin10
                    maxMin10 
    := high
                    acc10 
    := start10
                    acc10

            
    if na(out10)
                if 
    isUpTrend10
                    out10 
    := math.min(out10bar_index == low[1] : math.min(low[1], low[2]))
                    
    out10
                
    else
                    
    out10 := math.max(out10bar_index == high[1] : math.max(high[1], high[2]))
                    
    out10

        
    [out10acc10maxMin10isUpTrend10]


    start10 input(0)
    increment10 input(0.01)
    maximum10 input(0.1)
    [
    p10AF10EP10isUpTrend10] = psar0(start10increment10maximum10)
    newEP10 EP10 != EP10[1]
    epNew10 newEP10 EP10 na
    plot
    (p10'Fast'style=plot.style_linecolor=isUpTrend10 color.lime color.redlinewidth=1)
    //Slow SAR
    psar1234(start12345inc12345maximum12345) =>
        
    out12345 float(na)
        
    isUpTrend12345 bool(na)
        
    maxMin12345 float(na)
        
    acc12345 float(na)
        
    prev12345 float(na)

        if 
    bar_index >= 1
            prev12345 
    := out12345[1]
            if 
    bar_index == 1
                
    if close close[1]
                    
    isUpTrend12345 := true
                    maxMin12345 
    := math.max(highhigh[1])
                    
    prev12345 := math.min(lowlow[1])
                    
    prev12345
                
    else
                    
    isUpTrend12345 := false
                    maxMin12345 
    := math.min(lowlow[1])
                    
    prev12345 := math.max(highhigh[1])
                    
    prev12345

                acc12345 
    := start12345
                acc12345
            
    else
                
    isUpTrend12345 := isUpTrend12345[1]
                
    acc12345 := acc12345[1]
                
    maxMin12345 := maxMin12345[1]
                
    maxMin12345

            
    if isUpTrend12345
                
    if high maxMin12345
                    maxMin12345 
    := high
                    acc12345 
    := math.min(acc12345 inc12345maximum12345)
                    
    acc12345
            
    else
                if 
    low maxMin12345
                    maxMin12345 
    := low
                    acc12345 
    := math.min(acc12345 inc12345maximum12345)
                    
    acc12345

            
    if na(out12345)
                
    out12345 := prev12345 acc12345 * (maxMin12345 prev12345)
                
    out12345

            
    if isUpTrend12345
                
    if low <= out12345
                    isUpTrend12345 
    := false
                    out12345 
    := maxMin12345
                    maxMin12345 
    := low
                    acc12345 
    := start12345
                    acc12345
            
    else
                if 
    high >= out12345
                    isUpTrend12345 
    := true
                    out12345 
    := maxMin12345
                    maxMin12345 
    := high
                    acc12345 
    := start12345
                    acc12345

            
    if na(out12345)
                if 
    isUpTrend12345
                    out12345 
    := math.min(out12345bar_index == low[1] : math.min(low[1], low[2]))
                    
    out12345
                
    else
                    
    out12345 := math.max(out12345bar_index == high[1] : math.max(high[1], high[2]))
                    
    out12345

        
    [out12345acc12345maxMin12345isUpTrend12345]


    start12345 input(0)
    increment12345 input(0.001)
    maximum12345 input(0.1)
    [
    p12345AF12345EP12345isUpTrend12345] = psar1234(start12345increment12345maximum12345)
    newEP12345 EP12345 != EP12345[1]
    epNew12345 newEP12345 EP12345 na
    plot
    (p12345'Sar-Trend'style=plot.style_linecolor=isUpTrend12345 color.lime color.redlinewidth=1)
    plot(EP12345'Sar-Break'style=plot.style_linecolor=isUpTrend12345 color.lime color.redlinewidth=1)
    plot(epNew12345'Sar-Continue'style=plot.style_crosscolor=isUpTrend12345 color.green color.redlinewidth=2)
    //Signal
    xyz=ta.crossunder(epNew1,p12345)
    plotshape(xyzepNew1:nastyle=shape.circlelocation=location.abovebarcolor=isUpTrend1 color.rgb(342476) : color.rgb(24733), size=size.normal)
    xyz1=ta.crossover(epNew1,p12345)
    plotshape(xyz1epNew1:nastyle=shape.circlelocation=location.belowbarcolor=isUpTrend1 color.rgb(342476) : color.rgb(24733), size=size.normal)
    //END
    //Function Sar; slow-avarage-fast
    lenxc input(5)
    lenxc20 input(5)
    lenxc50 input(5)

    z(closelenxc) =>
        
    hxc 0.0
        dxc 
    0.0
        
    for 0 to lenxc 1 by 1
            kxc 
    = (lenxc i) * lenxc
            hxc 
    += kxc
            dxc 
    += close[i] * kxc
            dxc
        dxc 
    hxc

    cxc 
    z(closemath.floor(math.sqrt(lenxc)))
    //

    z20(closelenxc20) =>
        
    hcx20 0.0
        dxc20 
    0.0
        
    for 0 to lenxc20 1 by 1
            kxc20 
    = (lenxc20 i) * lenxc20
            hcx20 
    += kxc20
            dxc20 
    += close[i] * kxc20
            dxc20
        dxc20 
    hcx20

    cxc20 
    z20(closemath.floor(math.sqrt(lenxc20)))
    //
    z50(closelenxc50) =>
        
    hxc50 0.0
        dxc50 
    0.0
        
    for 0 to lenxc50 1 by 1
            kxc50 
    = (lenxc50 i) * lenxc50
            hxc50 
    += kxc50
            dxc50 
    += close[i] * kxc50
            dxc50
        dxc50 
    hxc50

    cxc50 
    z50(closemath.floor(math.sqrt(lenxc50)))
    //
    //
    startsx 0.05
    incrementsx 
    0.75
    maximumsx 
    0.35
    ssx 
    ta.sar(startsxincrementsxmaximumsx)
    s1sx z(ssxlenxc)
    pcsx close s1sx color.rgb(2558282100) : color.rgb(7617579100)
    plot(s1sxtitle="SAR Avarage",style=plot.style_crosscolor=pcsxlinewidth=1)

    startsx20 0.1
    incrementsx20 
    0.1
    maximumsx20 
    0.1
    ssx20 
    ta.sar(startsx20incrementsx20maximumsx20)
    s1sx20 z20(ssx20lenxc20)
    pcsx20 close s1sx20 color.rgb(255828200) : color.rgb(761757900)
    plot(s1sx20title="SAR Slow",style=plot.style_crosscolor=pcsx20linewidth=1)

    startsx50 0
    incrementsx50 
    0.1
    maximumsx50 
    1
    ssx50 
    ta.sar(startsx50incrementsx50maximumsx50)
    s1sx50 z50(ssx50lenxc50)
    pcsx50 close s1sx50 color.rgb(255828200) : color.rgb(761757900)
    plot(s1sx50title="SAR Fast",style=plot.style_crosscolor=pcsx50linewidth=1)
    //Signal
    xyzbn=ta.crossover(close,s1sx50)
    plotshape(xyzbns1sx50:nastyle=shape.circlecolor=isUpTrend1 color.rgb(342476) : color.rgb(24733), size=size.small)
    xyz1bn=ta.crossover(s1sx50,s1sx20)
    plotshape(xyz1bns1sx20:nastyle=shape.circle,  color=isUpTrend1 color.rgb(342476) : color.rgb(24733), size=size.small)
    //END 

    bu kod zaman analizi ile ilişkilendirilince....
    yararlı kalan kısım bu oldu....
    PHP Code:
      //@version=5
    indicator("Triple Sar"overlay true)
    //Function Sar; slow-avarage-fast
    lenxc input(5)
    lenxc20 input(5)
    lenxc50 input(5)

    z(closelenxc) =>
        
    hxc 0.0
        dxc 
    0.0
        
    for 0 to lenxc 1 by 1
            kxc 
    = (lenxc i) * lenxc
            hxc 
    += kxc
            dxc 
    += close[i] * kxc
            dxc
        dxc 
    hxc

    cxc 
    z(closemath.floor(math.sqrt(lenxc)))
    //

    z20(closelenxc20) =>
        
    hcx20 0.0
        dxc20 
    0.0
        
    for 0 to lenxc20 1 by 1
            kxc20 
    = (lenxc20 i) * lenxc20
            hcx20 
    += kxc20
            dxc20 
    += close[i] * kxc20
            dxc20
        dxc20 
    hcx20

    cxc20 
    z20(closemath.floor(math.sqrt(lenxc20)))
    //
    z50(closelenxc50) =>
        
    hxc50 0.0
        dxc50 
    0.0
        
    for 0 to lenxc50 1 by 1
            kxc50 
    = (lenxc50 i) * lenxc50
            hxc50 
    += kxc50
            dxc50 
    += close[i] * kxc50
            dxc50
        dxc50 
    hxc50

    cxc50 
    z50(closemath.floor(math.sqrt(lenxc50)))
    //
    //
    startsx 0.05
    incrementsx 
    0.75
    maximumsx 
    0.35
    ssx 
    ta.sar(startsxincrementsxmaximumsx)
    s1sx z(ssxlenxc)
    pcsx close s1sx color.rgb(2558282100) : color.rgb(7617579100)
    //plot(s1sx, title="SAR Avarage",style=plot.style_cross, color=pcsx, linewidth=1)

    startsx20 0.1
    incrementsx20 
    0.1
    maximumsx20 
    0.1
    ssx20 
    ta.sar(startsx20incrementsx20maximumsx20)
    s1sx20 z20(ssx20lenxc20)
    pcsx20 close s1sx20 color.rgb(255828200) : color.rgb(761757900)
    plot(s1sx20title="SAR Slow",style=plot.style_crosscolor=pcsx20linewidth=1)

    startsx50 0
    incrementsx50 
    0.1
    maximumsx50 
    1
    ssx50 
    ta.sar(startsx50incrementsx50maximumsx50)
    s1sx50 z50(ssx50lenxc50)
    pcsx50 close s1sx50 color.rgb(255828200) : color.rgb(761757900)
    plot(s1sx50title="SAR Fast",style=plot.style_crosscolor=pcsx50linewidth=1)
    //Signal 
    aynı uzunluğun avarage gizlendi...fast ve slow kesişmeleri kondu....

    bunu... kesişimine sinyal koyacağınız gibi....
    geçmiş kısımdaki...dip ve tepeleri de destek ve direnç gibi kullanılabilir....





  2. PHP Code:
     //@version=5
    indicator("Superfriend"overlay=truetimeframe=""timeframe_gaps=true)

    atrPeriod input(7"ATR Length"inline"1")
    factor input.float(3.0"Factor"step 0.01inline"1")

    [
    supertrenddirection] = ta.supertrend(factoratrPeriod)

    bodyMiddle plot((open close) / 2display=display.none)
    upTrend plot(direction supertrend na"Up Trend"color color.greenstyle=plot.style_linebr)
    downTrend plot(direction 0na supertrend"Down Trend"color color.redstyle=plot.style_linebr)

    //fill(bodyMiddle, upTrend, color.new(color.green, 90), fillgaps=false)
    //fill(bodyMiddle, downTrend, color.new(color.red, 90), fillgaps=false)

    atrPeriod1 input(14"ATR Length"inline"2")
    factor1 input.float(2.0"Factor"step 0.01inline"2")

    [
    supertrend1direction1] = ta.supertrend(factor1atrPeriod1)

    bodyMiddle1 plot((open close) / 2display=display.none)
    upTrend1 plot(direction1 supertrend1 na"Up Trend"color color.greenstyle=plot.style_linebr)
    downTrend1 plot(direction1 0na supertrend1"Down Trend"color color.redstyle=plot.style_linebr)

    //fill(bodyMiddle1, upTrend1, color.new(color.green, 90), fillgaps=false)
    //fill(bodyMiddle1, downTrend1, color.new(color.red, 90), fillgaps=false)

    atrPeriod2 input(21"ATR Length"inline"3")
    factor2 input.float(1.0"Factor"step 0.01inline"3")

    [
    supertrend2direction2] = ta.supertrend(factor2atrPeriod2)

    bodyMiddle2 plot((open close) / 2display=display.none)
    upTrend2 plot(direction2 supertrend2 na"Up Trend"color color.greenstyle=plot.style_linebr)
    downTrend2 plot(direction2 0na supertrend2"Down Trend"color color.redstyle=plot.style_linebr)

    //fill(bodyMiddle2, upTrend2, color.new(color.green, 90), fillgaps=false)
    //fill(bodyMiddle2, downTrend2, color.new(color.red, 90), fillgaps=false) 
    supertrendi...superfriend yapmış... 3 atr hesaplaması kullanmış....
    kullanılışı kolay...

    örnekler...
    https://www.tradingview.com/x/gHT8jc0W/
    https://www.tradingview.com/x/anYWuxdd/
    https://www.tradingview.com/x/kFB9jHvP/
    https://www.tradingview.com/x/vzZANO5j/

  3. üzerinde çalıştığım sade bir kod tasarımı....
    sar kullanıldı...trend sar stop dedim....


    kodu genellikle 1-5-15 lik peiyotlarda vyr kaç için kullanılabilir...

    PHP Code:
      // This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
    // © carefulCode53358

    //@version=5
    indicator("Trend SarStop"overlay true)
    //Sar Function
    psar(start1inc1maximum1) =>
        
    out1 float(na)
        
    isUpTrend1 bool(na)
        
    maxMin1 float(na)
        
    acc1 float(na)
        
    prev1 float(na)

        if 
    bar_index >= 1
            prev1 
    := out1[1]
            if 
    bar_index == 1
                
    if close close[1]
                    
    isUpTrend1 := true
                    maxMin1 
    := math.max(highhigh[1])
                    
    prev1 := math.min(lowlow[1])
                    
    prev1
                
    else
                    
    isUpTrend1 := false
                    maxMin1 
    := math.min(lowlow[1])
                    
    prev1 := math.max(highhigh[1])
                    
    prev1

                acc1 
    := start1
                acc1
            
    else
                
    isUpTrend1 := isUpTrend1[1]
                
    acc1 := acc1[1]
                
    maxMin1 := maxMin1[1]
                
    maxMin1

            
    if isUpTrend1
                
    if high maxMin1
                    maxMin1 
    := high
                    acc1 
    := math.min(acc1 inc1maximum1)
                    
    acc1
            
    else
                if 
    low maxMin1
                    maxMin1 
    := low
                    acc1 
    := math.min(acc1 inc1maximum1)
                    
    acc1

            
    if na(out1)
                
    out1 := prev1 acc1 * (maxMin1 prev1)
                
    out1

            
    if isUpTrend1
                
    if low <= out1
                    isUpTrend1 
    := false
                    out1 
    := maxMin1
                    maxMin1 
    := low
                    acc1 
    := start1
                    acc1
            
    else
                if 
    high >= out1
                    isUpTrend1 
    := true
                    out1 
    := maxMin1
                    maxMin1 
    := high
                    acc1 
    := start1
                    acc1

            
    if na(out1)
                if 
    isUpTrend1
                    out1 
    := math.min(out1bar_index == low[1] : math.min(low[1], low[2]))
                    
    out1
                
    else
                    
    out1 := math.max(out1bar_index == high[1] : math.max(high[1], high[2]))
                    
    out1

        
    [out1acc1maxMin1isUpTrend1]


    start1 input(0.005)
    increment1 input(0.075)
    maximum1 input(0.35)
    [
    p1AF1EP1isUpTrend1] = psar(start1increment1maximum1)

    newEP1 EP1 != EP1[1]
    epNew1 newEP1 EP1 na
    plot
    (EP1'SAR'style=plot.style_crosscolor=isUpTrend1 color.green color.redlinewidth=2)
    plot(p1title='SAR-Continue'style=plot.style_cross,color=isUpTrend1 color.green color.redlinewidth=2)
    //Stop Function
    mult156 input.float(3'Multiplicative Factor'minval 0)
    slope156 input.float(20'Slope'minval 0)
    width156 input.float(100'Width %'minval 0maxval 100) / 100
    //Style
    bullCss156 input.color(color.lime'Average Color'inline 'avg'group 'Style')
    bearCss156 input.color(color.red''              inline 'avg'group 'Style')

    //Calculation
    //-----------------------------------------------------------------------------{
    var float upper156 na
    var float lower156 na
    var float avg156   close

    var hold156 0.
    var os156 1.
        
    atr156 
    nz(ta.atr(200)) * mult156

    avg156 
    := math.abs(close avg156) > atr156 
      
    math.avg(closeavg156)
      : 
    avg156 os156 * (hold156 mult156 slope156)

    os156 := math.sign(avg156 avg156[1])
    hold156 := os156 != os156[1] ? atr156 hold156

    upper156 
    := avg156 width156 hold156
    lower156 
    := avg156 width156 hold156

    css156 
    os156 == bullCss156 bearCss156
    plot_avg156 
    plot(avg156'STOP'os156 != os156[1] ? na css156style=plot.style_line,linewidth 2)
    //END 
    kombine dilmiş bir kod......

    kodu zaman analizi ile ilişkilendirince....

    görüntü bu....https://www.tradingview.com/x/x9dzaDXm/

    kodun işe yarayıp alınacak kısmı ise sadece...kırılım çizgisi oldu gibi....

  4. devam eden iki çalışmam var...

    biri...kombine edilmiş...
    trend kodları...filtreler ve kanallardan oluşan hesaplamalar....

    hoşuma giden...beğendiklerimi topladım....
    hepsinin verisinin aritmetik ortalamasını aldım...
    tek çizgi ile sinyalledim.....


    birde emaların aritmetik ortalamasını alınca....


    görüntü bu...

    bu arada işc sürekli takibe alındı....
    çünkü kapa yaptığı açıklama....

    endekse yeni bir momentum ivmesi kazandıracağını düşünüyorum....

  5. devam eden döngü çalışma kodum.....
    oluşmuş dip-tepe belirleyen.....
    iki stopla trend takibi eden....
    trend yönüne göre olası dip-tepe hesaplayan....
    trend olduğu zaman yeşil ve kırmızı büyük üçgenlerle sinyal veren....

    sinyal aralığının içini de bölümleyip....küçük üçgenlerle hızlandırılan sistem....

    küçük üçgenlerde en az 2...
    trend olmayan kısımda gelen en az 3 küçük üçgen sinyali ile başlayacak olan trend yakalayan....

    örnekler.....
    https://www.tradingview.com/x/Ek0oPRw3/
    https://www.tradingview.com/x/tXMKlheC/
    https://www.tradingview.com/x/xN8vOEUR/
    https://www.tradingview.com/x/OYP4Vl8u/
    https://www.tradingview.com/x/1uMm37wZ/

    zaman analizi kodu ile ilişkilendirilip....sadeleştirilmesi yapılacak....

  6.  Alıntı Originally Posted by @yörük@ Yazıyı Oku
    devam eden döngü çalışma kodum.....
    oluşmuş dip-tepe belirleyen.....
    iki stopla trend takibi eden....
    trend yönüne göre olası dip-tepe hesaplayan....
    trend olduğu zaman yeşil ve kırmızı büyük üçgenlerle sinyal veren....

    sinyal aralığının içini de bölümleyip....küçük üçgenlerle hızlandırılan sistem....

    küçük üçgenlerde en az 2...
    trend olmayan kısımda gelen en az 3 küçük üçgen sinyali ile başlayacak olan trend yakalayan....

    örnekler.....
    https://www.tradingview.com/x/Ek0oPRw3/
    https://www.tradingview.com/x/tXMKlheC/
    https://www.tradingview.com/x/xN8vOEUR/
    https://www.tradingview.com/x/OYP4Vl8u/
    https://www.tradingview.com/x/1uMm37wZ/

    zaman analizi kodu ile ilişkilendirilip....sadeleştirilmesi yapılacak....
    normalde kodun görüntüsü böyle.....


    ana kodla ilişkilendirilince en makul... sadeleştirmesi böyle....
    aynı sonuçlara ulaşan hesaplamaları atıp....emalardan ortalama eklemek daha güzel gibi....

  7. super conbine avarage kodu üzerinde devam eden çalışmada....
    zaman analizi ile ilişkilendirilince...

    test sonucunda kod sadeleştirilip....
    en küçük 1 dakkalık periyota uygulanınca....
    ve parabol ile filtrelenince....

    ortaya ilginç bir şey çıktı....
    1 dakkalık periyotlar için örnekler.....


    yükselenlerden örnekler.....
    https://www.tradingview.com/x/FWhJoQQy/
    https://www.tradingview.com/x/8gRieu9u/
    https://www.tradingview.com/x/hDEQOHpX/
    https://www.tradingview.com/x/csRhF2x9/
    https://www.tradingview.com/x/jmgrHZAu/
    https://www.tradingview.com/x/T5Jrdo9G/
    https://www.tradingview.com/x/VcEAdCY6/

    düşenlerden örnekler....
    https://www.tradingview.com/x/YioMJyxt/
    https://www.tradingview.com/x/lCO67vpK/
    https://www.tradingview.com/x/Imif9M1E/
    https://www.tradingview.com/x/0O3D3jiz/

    x100den...
    https://www.tradingview.com/x/s1upOIU4/
    https://www.tradingview.com/x/0vgCB44x/
    https://www.tradingview.com/x/DZrVvLLH/
    https://www.tradingview.com/x/r2xqSKaH/
    https://www.tradingview.com/x/XAoEMU98/

    bu örneklere bakılınca....
    yapılması gereken strateji yazmak....

    bunun için.... belirtilen yerlerde...
    fiyat ile verinim farkını hesaplamak....

    bunları alış satış mantığı ile saydırmak....

    totalde oluşacak farkı bulup....

    parabol devrede iken...işlemi parabol filtresi ile bitirmek sanırım....

    çalışma bu şekilde devam edecek....
    Son düzenleme : @yörük@; 27-08-2023 saat: 14:30.

Sayfa 239/301 İlkİlk ... 139189229237238239240241249289 ... 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
  •