Sayfa 280/281 İlkİlk ... 180230270278279280281 SonSon
Arama sonucu : 2242 madde; 2,233 - 2,240 arası.

Konu: Tradingview

  1. https://tr.tradingview.com/script/U1...llinger-Bands/

    mtf bolinger kodu.....mtf kalıp için farklı indikatörleri denemek için kullanılabilir....

    görüntü...8 değeriyle...g-h-aylık olaraktır ki....
    low ve ema lar kapatılmıştır...

    https://www.tradingview.com/x/zjfnEAGm/
    16.07.2024 - 10.12.2024

  2. https://tr.tradingview.com/script/EX...Bitcoin-daily/

    bolingerı 20 değeri için...0.1 ve 0.2 hesaplatmış...sonra daralması ve açılmasını renklendirmiş...
    siyah aşırı satış....kırmızı satış...sarı normal...alan...

    8 değeri uygulanırsa görüntü....https://www.tradingview.com/x/0q45DVC3/
    16.07.2024 - 10.12.2024

  3. https://tr.tradingview.com/script/9KNKhgYa/
    bolingere...atr eklemiş....ihlallere göre... tekrar bolinger içine dönme mantığıyla...strateji var....

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

    20 değeri kullanılırsa....https://www.tradingview.com/x/mGjX378o/

    8 değeri kullanılırsa.....https://www.tradingview.com/x/JzH5xSMq/

    mtf özellik var...
    16.07.2024 - 10.12.2024

  4. https://tr.tradingview.com/script/vL...erTrend-Entry/

    fiyat atryi kesmesine göre bar renklendirilmiş.....otomatik profit hesaplaması var....
    https://www.tradingview.com/x/NZ8Cnvyu/
    16.07.2024 - 10.12.2024

  5. 16.07.2024 - 10.12.2024

  6. tasarlarken...
    genellikle en düşük periyotu tercih eder....
    bolinger benzeri kanal görmek....
    mtf kullanarak....bir indikatörün...diğer periyot değerlerini bilmek.....
    ve...
    sinyal hesaplattığım değeri....
    en yakın değerle kontrol etmek isterim.....

    tasarlarken farklı indikatörleri kullanarak değil....
    aynı indikatörü...farklı hesaplamalar yaparak kullanılmasını isteyince.....

    tw de... indikatörlere bakarken......hesaplamalarını dikkat ederim....
    farklı olanlar dikkatimi çeker.....

    onları kombine eder....kendi değerimi kullanmaya çalışırım.....

    örnek...
    https://www.tradingview.com/x/gj7XO9ht/
    görüntüdeki her şey....psar hesaplamasıdır.....


    PHP Code:
    // This work is licensed under Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International  
    // https://creativecommons.org/licenses/by-nc-sa/4.0/
    // © BigBeluga

    //@version=6
    indicator(title="Parabolic SAR Deviation [BigBeluga]"shorttitle="..."overlay=truemax_lines_count 500max_labels_count 500)

    // INPUTS ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――{
    float start input.float(0.step 0.01group "SAR")
    float increment input.float(0.01step 0.001group "SAR")
    int maximum 1
    bool prices 
    input.bool(true"Signals"group "SAR")
    color col_up input.color(color.rgb(2022458), ""inline "col"group "SAR")
    color col_dn input.color(color.rgb(10219242), ""inline "col"group "SAR")
    float deviation_size input.float(1.5"Deviation"step 0.1group "Deviation Levels")

    color color_na color.new(color.black100)
    color standart_col chart.fg_color

    // }
    // CALCULATIONS――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――{
    out ta.sar(startincrementmaximum)

    deviation_levels(trend)=>
        
    float dist ta.sma(high-low100)*deviation_size

        
    var lines = array.new<line>(4line(na))
        var 
    labels = array.new<label>(4label(na))

        if 
    trend != trend[1

            for 
    1 to 4
                y 
    trend close+dist*close-dist*i
                line1 
    line.new(bar_indexybar_indexycolor standart_col)
                
    label1 label.new(bar_indexystr.tostring(i), style label.style_label_rightcolor color_natextcolor standart_col

                
    labels.push(label1)
                
    lines.push(line1)

       
        if 
    lines.size() > 
            line
    .delete(lines.shift())
            
    label.delete(labels.shift())

    bool trend close out 
    bool trend_up 
    ta.crossover(closeout) and barstate.isconfirmed
    bool trend_dn 
    ta.crossunder(closeout) and barstate.isconfirmed

    color trend_col 
    trend col_up col_dn
    // }


    // PLOT ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――{
    if prices
        
    if trend_up
            label
    .new(bar_indexout"▲\n" str.tostring(close"#,###.####"), style=label.style_label_uptextcolor trend_colcolor color_na)

        if 
    trend_dn
            label
    .new(bar_indexoutstr.tostring(close"#,###.####") + "\n▼"style=label.style_label_downtextcolor trend_colcolor color_na)

    deviation_levels(trend)

    //pp = plot(hl2, editable = false, display = display.none)
    po plot(trend != trend[1] ? na out"SAR"color=trend_colstyle plot.style_linebrlinewidth 2)

    //fill(pp, po, hl2, out, na, color.new(trend_col, 90))
    // }
    /////////////////////
    // This indicator is created under TechnoBlooms - Innovating Trading Indicators and Strategies.
    // All rights reserved. Unauthorized copying or distribution is prohibited.
    // © TechnoBlooms

    //@version=6


    //-------------------------------------------------------------------------------------
    // Inputs for SAR
    //-------------------------------------------------------------------------------------
    start1 input(0.)
    increment1 input(0.01)
    maximum1 input(0.2"Max Value")

    //-------------------------------------------------------------------------------------
    // SAR calculation for the chart's main timeframe
    //-------------------------------------------------------------------------------------
    out1 ta.sar(start1increment1maximum1)
    plot_color close out1 color.rgb(518264) : close out color.rgb(16977) : na

    //-------------------------------------------------------------------------------------
    // Table settings
    //-------------------------------------------------------------------------------------
    show_header input(falsetitle="Show header?"group='Table Settings')
    dashboard_position input.string("Middle right"title="Position"options=["Top right""Bottom right""Top left""Bottom left""Top center""Bottom center""Middle right"], group='Table Settings')
    text_size input.string('Normal'title="Size"options=["Tiny""Small""Normal""Large"], group='Table Settings')
    text_color input.color(color.rgb(1168224), title="Text color"group='Table Settings')
    table_color input.color(color.purpletitle="Border color"group='Table Settings')
    //uptrend_indicator = input.string("🔵", title="Uptrend indicator", group='Table Settings')
    //downtrend_indicator = input.string("🟠", title="Downtrend indicator", group='Table Settings')
    uptrend_indicator "🔵"
    downtrend_indicator "🟠"

    //--------------------------------------------------------------------------------------
    // Timeframe settings
    // User selects 10 different timeframes
    //--------------------------------------------------------------------------------------
    tf1 input.timeframe("1"title="Timeframe 1")
    tf2 input.timeframe("3"title="Timeframe 2")
    tf3 input.timeframe("5"title="Timeframe 3")
    tf4 input.timeframe("10"title="Timeframe 4")
    tf5 input.timeframe("15"title="Timeframe 5")
    tf6 input.timeframe("30"title="Timeframe 6")
    tf7 input.timeframe("60"title="Timeframe 7")
    tf8 input.timeframe("120"title="Timeframe 8")
    tf9 input.timeframe("240"title="Timeframe 9")
    tf10 input.timeframe("D"title="Timeframe 10")


    //--------------------------------------------------------------------------------------
    // Table positioning and sizing
    //--------------------------------------------------------------------------------------
    var table_position dashboard_position == 'Top right' position.top_right :
      
    dashboard_position == 'Top left' position.top_left :
      
    dashboard_position == 'Top center' position.top_center :
      
    dashboard_position == 'Bottom right' position.bottom_right :
      
    dashboard_position == 'Bottom left' position.bottom_left :
      
    dashboard_position == 'Bottom center' position.bottom_center :
      
    dashboard_position == 'Middle right' position.middle_right position.middle_right
      
    var table_text_size text_size == 'Normal' size.normal :
      
    text_size == 'Large' size.large :
      
    text_size == 'Tiny' size.tiny :
      
    text_size == 'Small' size.small size.normal

    var table.new(position=table_positioncolumns=3rows=20frame_color=#cdcbcb, frame_width=5, border_color=table_color, border_width=1,bgcolor =color.rgb(21, 21, 21) )

    //--------------------------------------------------------------------------------------
    // Function to determine trend status
    //--------------------------------------------------------------------------------------
    get_trend_status(trend_value) =>
        
    is_uptrend close trend_value
        candle_now 
    is_uptrend uptrend_indicator downtrend_indicator
        candle_now

    //--------------------------------------------------------------------------------------
    // Calculate trend and SAR value for all selected timeframes
    //--------------------------------------------------------------------------------------
    sar_1 request.security(syminfo.tickeridtf1ta.sar(startincrementmaximum))
    sar_2 request.security(syminfo.tickeridtf2ta.sar(startincrementmaximum))
    sar_3 request.security(syminfo.tickeridtf3ta.sar(startincrementmaximum))
    sar_4 request.security(syminfo.tickeridtf4ta.sar(startincrementmaximum))
    sar_5 request.security(syminfo.tickeridtf5ta.sar(startincrementmaximum))
    sar_6 request.security(syminfo.tickeridtf6ta.sar(startincrementmaximum))
    sar_7 request.security(syminfo.tickeridtf7ta.sar(startincrementmaximum))
    sar_8 request.security(syminfo.tickeridtf8ta.sar(startincrementmaximum))
    sar_9 request.security(syminfo.tickeridtf9ta.sar(startincrementmaximum))
    sar_10 request.security(syminfo.tickeridtf10ta.sar(startincrementmaximum))


    trend_indicator_1 get_trend_status(sar_1)
    trend_indicator_2 get_trend_status(sar_2)
    trend_indicator_3 get_trend_status(sar_3)
    trend_indicator_4 get_trend_status(sar_4)
    trend_indicator_5 get_trend_status(sar_5)
    trend_indicator_6 get_trend_status(sar_6)
    trend_indicator_7 get_trend_status(sar_7)
    trend_indicator_8 get_trend_status(sar_8)
    trend_indicator_9 get_trend_status(sar_9)
    trend_indicator_10 get_trend_status(sar_10)

    if 
    tf1 == "60"
        
    tf1 := "1H"
    if tf1 == "120"
        
    tf1 := "2H"
    if tf1 == "180"
        
    tf1 := "3H"
    if tf1 == "240"
        
    tf1 := "4H"

    if tf2 == "60"
        
    tf2 := "1H"
    if tf2 == "120"
        
    tf2 := "2H"
    if tf2 == "180"
        
    tf2 := "3H"
    if tf2 == "240"
        
    tf2 := "4H"

    if tf3 == "60"
        
    tf3 := "1H"
    if tf3 == "120"
        
    tf3 := "2H"
    if tf3 == "180"
        
    tf3 := "3H"
    if tf3 == "240"
        
    tf3 := "4H"

    if tf4 == "60"
        
    tf4 := "1H"
    if tf4 == "120"
        
    tf4 := "2H"
    if tf4 == "180"
        
    tf4 := "3H"
    if tf4 == "240"
        
    tf4 := "4H"

    if tf5 == "60"
        
    tf5 := "1H"
    if tf5 == "120"
        
    tf5 := "2H"
    if tf5 == "180"
        
    tf5 := "3H"
    if tf5 == "240"
        
    tf5 := "4H"

    if tf6 == "60"
        
    tf6 := "1H"
    if tf6 == "120"
        
    tf6 := "2H"
    if tf6 == "180"
        
    tf6 := "3H"
    if tf6 == "240"
        
    tf6 := "4H"

    if tf7 == "60"
        
    tf7 := "1H"
    if tf7 == "120"
        
    tf7 := "2H"
    if tf7 == "180"
        
    tf7 := "3H"
    if tf7 == "240"
        
    tf7 := "4H"

    if tf8 == "60"
        
    tf8 := "1H"
    if tf8 == "120"
        
    tf8 := "2H"
    if tf8 == "180"
        
    tf8 := "3H"
    if tf8 == "240"
        
    tf8 := "4H"

    if tf9 == "60"
        
    tf9 := "1H"
    if tf9 == "120"
        
    tf9 := "2H"
    if tf9 == "180"
        
    tf9 := "3H"
    if tf9 == "240"
        
    tf9 := "4H"

    if tf10 == "60"
        
    tf10 := "1H"
    if tf10 == "120"
        
    tf10 := "2H"
    if tf10 == "180"
        
    tf10 := "3H"
    if tf10 == "240"
        
    tf10 := "4H"


    //---------------------------------------------------------------------------------------------
    // Update table with trend data
    //---------------------------------------------------------------------------------------------
    if (barstate.islast)
       
        
    table.cell(t01tf1text_color=color.whitetext_size=table_text_size,bgcolor color.rgb(212121))
        
    table.cell(t11text="●"text_color=trend_indicator_1==uptrend_indicator?color.rgb(22464251):#64d9e8,text_size = size.large)
        
    table.cell(t21str.tostring(sar_1"#.##"), text_color=color.whitetext_size=table_text_size,bgcolor color.rgb(212121))

        
    table.cell(t02tf2text_color=color.whitetext_size=table_text_size,bgcolor color.rgb(212121))
        
    table.cell(t12text="●"text_color=trend_indicator_2==uptrend_indicator?color.rgb(22464251):#64d9e8,text_size = size.large)
        
    table.cell(t22str.tostring(sar_2"#.##"), text_color=color.whitetext_size=table_text_size,bgcolor color.rgb(212121))
        
        
    table.cell(t03tf3text_color=color.whitetext_size=table_text_size,bgcolorcolor.rgb(212121))
        
    table.cell(t13text="●"text_color=trend_indicator_3==uptrend_indicator?color.rgb(22464251):#64d9e8,text_size = size.large)
        
    table.cell(t23str.tostring(sar_3"#.##"), text_color=color.whitetext_size=table_text_size,bgcolor color.rgb(212121))

        
    table.cell(t04tf4text_color=color.whitetext_size=table_text_sizebgcolor color.rgb(212121))
        
    table.cell(t14text="●"text_color=trend_indicator_4==uptrend_indicator?color.rgb(22464251):#64d9e8,text_size = size.large)
        
    table.cell(t24str.tostring(sar_4"#.##"), text_color=color.whitetext_size=table_text_size,bgcolor color.rgb(212121))

        
    table.cell(t05tf5text_color=color.whitetext_size=table_text_sizebgcolor color.rgb(212121))
        
    table.cell(t15text="●"text_color=trend_indicator_5==uptrend_indicator?color.rgb(22464251):#64d9e8,text_size = size.large)
        
    table.cell(t25str.tostring(sar_5"#.##"), text_color=color.whitetext_size=table_text_size,bgcolor color.rgb(212121))

        
    table.cell(t06tf6text_color=color.whitetext_size=table_text_size,bgcolor color.rgb(212121))
        
    table.cell(t16text="●"text_color=trend_indicator_6==uptrend_indicator?color.rgb(22464251):#64d9e8,text_size = size.large)
        
    table.cell(t26str.tostring(sar_6"#.##"), text_color=color.whitetext_size=table_text_size,bgcolor color.rgb(212121))

        
    table.cell(t07tf7text_color=color.whitetext_size=table_text_size,bgcolor color.rgb(212121))
        
    table.cell(t17text="●"text_color=trend_indicator_7==uptrend_indicator?color.rgb(22464251):#64d9e8,text_size = size.large)
        
    table.cell(t27str.tostring(sar_7"#.##"), text_color=color.whitetext_size=table_text_size,bgcolor color.rgb(212121))

        
    table.cell(t08tf8text_color=color.whitetext_size=table_text_size,bgcolor =  color.rgb(212121))
        
    table.cell(t18text="●"text_color=trend_indicator_8==uptrend_indicator?color.rgb(22464251):#64d9e8,text_size = size.large)
        
    table.cell(t28str.tostring(sar_8"#.##"), text_color=color.whitetext_size=table_text_size,bgcolor color.rgb(212121))

        
    table.cell(t09tf9text_color=color.whitetext_size=table_text_size,bgcolor =  color.rgb(212121))
        
    table.cell(t19text="●"text_color=trend_indicator_9==uptrend_indicator?color.rgb(22464251):#64d9e8,text_size = size.large)
        
    table.cell(t29str.tostring(sar_9"#.##"), text_color=color.whitetext_size=table_text_size,bgcolor color.rgb(212121))

        
    table.cell(t010tf10text_color=color.whitetext_size=table_text_size,bgcolor =  color.rgb(212121))
        
    table.cell(t110text="●"text_color=trend_indicator_10==uptrend_indicator?color.rgb(22464251):#64d9e8,text_size = size.large)
        
    table.cell(t210str.tostring(sar_10"#.##"), text_color=color.whitetext_size=table_text_size,bgcolor color.rgb(212121))

     
    table.cell(t,0,0,"T.F",text_color color.white,bgcolor color.rgb(212121))
    table.cell(t,1,0,"TREND",text_color color.white,bgcolor color.rgb(212121))
    table.cell(t,2,0,"PRICE",text_color color.white,bgcolor color.rgb(212121))


    //------------------------------------------------------------------------------------------
    // Determine how far back the line should extend
    //------------------------------------------------------------------------------------------
    lookback input.int(5"Line Lookback Period"minval=1)

    //------------------------------------------------------------------------------------------
    // On each new bar, create or update the line
    ///////////////////////////
    //@version=6
    // INPUTS //
    //
    start3 input(0.0)
    increment3 input(0.01)
    maximum3 input(0.2)
    s1 ta.sar(start3increment3maximum3)
    //pc = close < s1 ? color.red : color.green
    //plot(s1, style = plot.style_cross, color = pc)
    //


    lookBack input(40)
    //
    multi input.float(2title 'Multiplier'minval 0.001maxval 2)

    mean ta.ema(s1lookBack)
    stddev multi ta.stdev(s1lookBack)
    mean stddev
    s2 
    mean stddev


    meanp 
    plot(meantitle 'Mean'color color.new(color.yellow0))
    bsign plot(btitle 'Upper 'color color.new(color.green0), linewidth 2)
    ssign plot(s2title 'Lower 'color color.new(color.red0), linewidth 2)
    ////////////////////////// 
    örnek kod.....dilediğiniz değişiklikleri yapabilmeniz için.....
    16.07.2024 - 10.12.2024

  7. PHP Code:
    // This work is licensed under Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International  
    // https://creativecommons.org/licenses/by-nc-sa/4.0/
    // © BigBeluga

    //@version=6
    indicator(title="Parabolic SAR Deviation [BigBeluga]"shorttitle="..."overlay=truemax_lines_count 500max_labels_count 500)

    // INPUTS ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――{
    float start input.float(0.step 0.01group "SAR")
    float increment input.float(0.01step 0.001group "SAR")
    int maximum 1
    bool prices 
    input.bool(true"Signals"group "SAR")
    color col_up input.color(color.rgb(2022458), ""inline "col"group "SAR")
    color col_dn input.color(color.rgb(10219242), ""inline "col"group "SAR")
    float deviation_size input.float(1.5"Deviation"step 0.1group "Deviation Levels")

    color color_na color.new(color.black100)
    color standart_col chart.fg_color

    // }
    // CALCULATIONS――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――{
    out ta.sar(startincrementmaximum)

    deviation_levels(trend)=>
        
    float dist ta.sma(high-low100)*deviation_size

        
    var lines = array.new<line>(4line(na))
        var 
    labels = array.new<label>(4label(na))

        if 
    trend != trend[1

            for 
    1 to 4
                y 
    trend close+dist*close-dist*i
                line1 
    line.new(bar_indexybar_indexycolor standart_col)
                
    label1 label.new(bar_indexystr.tostring(i), style label.style_label_rightcolor color_natextcolor standart_col

                
    labels.push(label1)
                
    lines.push(line1)

       
        if 
    lines.size() > 
            line
    .delete(lines.shift())
            
    label.delete(labels.shift())

    bool trend close out 
    bool trend_up 
    ta.crossover(closeout) and barstate.isconfirmed
    bool trend_dn 
    ta.crossunder(closeout) and barstate.isconfirmed

    color trend_col 
    trend col_up col_dn
    // }


    // PLOT ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――{
    if prices
        
    if trend_up
            label
    .new(bar_indexout"▲\n" str.tostring(close"#,###.####"), style=label.style_label_uptextcolor trend_colcolor color_na)

        if 
    trend_dn
            label
    .new(bar_indexoutstr.tostring(close"#,###.####") + "\n▼"style=label.style_label_downtextcolor trend_colcolor color_na)

    deviation_levels(trend)

    //pp = plot(hl2, editable = false, display = display.none)
    po plot(trend != trend[1] ? na out"SAR-Sinyal"color=trend_colstyle plot.style_linebrlinewidth 2)

    //@version=6
    start1 input(0.)
    increment1 input(0.01)
    maximum1 input(0.2"Max Value")

    //-------------------------------------------------------------------------------------
    // SAR calculation for the chart's main timeframe
    //-------------------------------------------------------------------------------------
    out1 ta.sar(start1increment1maximum1)
    plot_color close out1 color.rgb(518264) : close out color.rgb(16977) : na

    //-------------------------------------------------------------------------------------
    // Table settings
    //-------------------------------------------------------------------------------------
    show_header input(falsetitle="Show header?"group='Table Settings')
    dashboard_position input.string("Middle right"title="Position"options=["Top right""Bottom right""Top left""Bottom left""Top center""Bottom center""Middle right"], group='Table Settings')
    text_size input.string('Normal'title="Size"options=["Tiny""Small""Normal""Large"], group='Table Settings')
    text_color input.color(color.rgb(1168224), title="Text color"group='Table Settings')
    table_color input.color(color.purpletitle="Border color"group='Table Settings')
    //uptrend_indicator = input.string("🔵", title="Uptrend indicator", group='Table Settings')
    //downtrend_indicator = input.string("🟠", title="Downtrend indicator", group='Table Settings')
    uptrend_indicator "🔵"
    downtrend_indicator "🟠"

    //--------------------------------------------------------------------------------------
    // Timeframe settings
    // User selects 10 different timeframes
    //--------------------------------------------------------------------------------------
    tf1 input.timeframe("1"title="Timeframe 1")
    tf2 input.timeframe("3"title="Timeframe 2")
    tf3 input.timeframe("5"title="Timeframe 3")
    tf4 input.timeframe("10"title="Timeframe 4")
    tf5 input.timeframe("15"title="Timeframe 5")
    tf6 input.timeframe("30"title="Timeframe 6")
    tf7 input.timeframe("60"title="Timeframe 7")
    tf8 input.timeframe("120"title="Timeframe 8")
    tf9 input.timeframe("240"title="Timeframe 9")
    tf10 input.timeframe("D"title="Timeframe 10")


    //--------------------------------------------------------------------------------------
    // Table positioning and sizing
    //--------------------------------------------------------------------------------------
    var table_position dashboard_position == 'Top right' position.top_right :
      
    dashboard_position == 'Top left' position.top_left :
      
    dashboard_position == 'Top center' position.top_center :
      
    dashboard_position == 'Bottom right' position.bottom_right :
      
    dashboard_position == 'Bottom left' position.bottom_left :
      
    dashboard_position == 'Bottom center' position.bottom_center :
      
    dashboard_position == 'Middle right' position.middle_right position.middle_right
      
    var table_text_size text_size == 'Normal' size.normal :
      
    text_size == 'Large' size.large :
      
    text_size == 'Tiny' size.tiny :
      
    text_size == 'Small' size.small size.normal

    var table.new(position=table_positioncolumns=3rows=20frame_color=#cdcbcb, frame_width=5, border_color=table_color, border_width=1,bgcolor =color.rgb(21, 21, 21) )

    //--------------------------------------------------------------------------------------
    // Function to determine trend status
    //--------------------------------------------------------------------------------------
    get_trend_status(trend_value) =>
        
    is_uptrend close trend_value
        candle_now 
    is_uptrend uptrend_indicator downtrend_indicator
        candle_now

    //--------------------------------------------------------------------------------------
    // Calculate trend and SAR value for all selected timeframes
    //--------------------------------------------------------------------------------------
    sar_1 request.security(syminfo.tickeridtf1ta.sar(startincrementmaximum))
    sar_2 request.security(syminfo.tickeridtf2ta.sar(startincrementmaximum))
    sar_3 request.security(syminfo.tickeridtf3ta.sar(startincrementmaximum))
    sar_4 request.security(syminfo.tickeridtf4ta.sar(startincrementmaximum))
    sar_5 request.security(syminfo.tickeridtf5ta.sar(startincrementmaximum))
    sar_6 request.security(syminfo.tickeridtf6ta.sar(startincrementmaximum))
    sar_7 request.security(syminfo.tickeridtf7ta.sar(startincrementmaximum))
    sar_8 request.security(syminfo.tickeridtf8ta.sar(startincrementmaximum))
    sar_9 request.security(syminfo.tickeridtf9ta.sar(startincrementmaximum))
    sar_10 request.security(syminfo.tickeridtf10ta.sar(startincrementmaximum))


    trend_indicator_1 get_trend_status(sar_1)
    trend_indicator_2 get_trend_status(sar_2)
    trend_indicator_3 get_trend_status(sar_3)
    trend_indicator_4 get_trend_status(sar_4)
    trend_indicator_5 get_trend_status(sar_5)
    trend_indicator_6 get_trend_status(sar_6)
    trend_indicator_7 get_trend_status(sar_7)
    trend_indicator_8 get_trend_status(sar_8)
    trend_indicator_9 get_trend_status(sar_9)
    trend_indicator_10 get_trend_status(sar_10)

    if 
    tf1 == "60"
        
    tf1 := "1H"
    if tf1 == "120"
        
    tf1 := "2H"
    if tf1 == "180"
        
    tf1 := "3H"
    if tf1 == "240"
        
    tf1 := "4H"

    if tf2 == "60"
        
    tf2 := "1H"
    if tf2 == "120"
        
    tf2 := "2H"
    if tf2 == "180"
        
    tf2 := "3H"
    if tf2 == "240"
        
    tf2 := "4H"

    if tf3 == "60"
        
    tf3 := "1H"
    if tf3 == "120"
        
    tf3 := "2H"
    if tf3 == "180"
        
    tf3 := "3H"
    if tf3 == "240"
        
    tf3 := "4H"

    if tf4 == "60"
        
    tf4 := "1H"
    if tf4 == "120"
        
    tf4 := "2H"
    if tf4 == "180"
        
    tf4 := "3H"
    if tf4 == "240"
        
    tf4 := "4H"

    if tf5 == "60"
        
    tf5 := "1H"
    if tf5 == "120"
        
    tf5 := "2H"
    if tf5 == "180"
        
    tf5 := "3H"
    if tf5 == "240"
        
    tf5 := "4H"

    if tf6 == "60"
        
    tf6 := "1H"
    if tf6 == "120"
        
    tf6 := "2H"
    if tf6 == "180"
        
    tf6 := "3H"
    if tf6 == "240"
        
    tf6 := "4H"

    if tf7 == "60"
        
    tf7 := "1H"
    if tf7 == "120"
        
    tf7 := "2H"
    if tf7 == "180"
        
    tf7 := "3H"
    if tf7 == "240"
        
    tf7 := "4H"

    if tf8 == "60"
        
    tf8 := "1H"
    if tf8 == "120"
        
    tf8 := "2H"
    if tf8 == "180"
        
    tf8 := "3H"
    if tf8 == "240"
        
    tf8 := "4H"

    if tf9 == "60"
        
    tf9 := "1H"
    if tf9 == "120"
        
    tf9 := "2H"
    if tf9 == "180"
        
    tf9 := "3H"
    if tf9 == "240"
        
    tf9 := "4H"

    if tf10 == "60"
        
    tf10 := "1H"
    if tf10 == "120"
        
    tf10 := "2H"
    if tf10 == "180"
        
    tf10 := "3H"
    if tf10 == "240"
        
    tf10 := "4H"


    //---------------------------------------------------------------------------------------------
    // Update table with trend data
    //---------------------------------------------------------------------------------------------
    if (barstate.islast)
       
        
    table.cell(t01tf1text_color=color.whitetext_size=table_text_size,bgcolor color.rgb(212121))
        
    table.cell(t11text="●"text_color=trend_indicator_1==uptrend_indicator?color.lime:color.red,text_size size.large)
        
    table.cell(t21str.tostring(sar_1"#.##"), text_color=color.whitetext_size=table_text_size,bgcolor color.rgb(212121))

        
    table.cell(t02tf2text_color=color.whitetext_size=table_text_size,bgcolor color.rgb(212121))
        
    table.cell(t12text="●"text_color=trend_indicator_2==uptrend_indicator?color.lime:color.red,text_size size.large)
        
    table.cell(t22str.tostring(sar_2"#.##"), text_color=color.whitetext_size=table_text_size,bgcolor color.rgb(212121))
        
        
    table.cell(t03tf3text_color=color.whitetext_size=table_text_size,bgcolorcolor.rgb(212121))
        
    table.cell(t13text="●"text_color=trend_indicator_3==uptrend_indicator?color.lime:color.red,text_size size.large)
        
    table.cell(t23str.tostring(sar_3"#.##"), text_color=color.whitetext_size=table_text_size,bgcolor color.rgb(212121))

        
    table.cell(t04tf4text_color=color.whitetext_size=table_text_sizebgcolor color.rgb(212121))
        
    table.cell(t14text="●"text_color=trend_indicator_4==uptrend_indicator?color.lime:color.red,text_size size.large)
        
    table.cell(t24str.tostring(sar_4"#.##"), text_color=color.whitetext_size=table_text_size,bgcolor color.rgb(212121))

        
    table.cell(t05tf5text_color=color.whitetext_size=table_text_sizebgcolor color.rgb(212121))
        
    table.cell(t15text="●"text_color=trend_indicator_5==uptrend_indicator?color.lime:color.red,text_size size.large)
        
    table.cell(t25str.tostring(sar_5"#.##"), text_color=color.whitetext_size=table_text_size,bgcolor color.rgb(212121))

        
    table.cell(t06tf6text_color=color.whitetext_size=table_text_size,bgcolor color.rgb(212121))
        
    table.cell(t16text="●"text_color=trend_indicator_6==uptrend_indicator?color.lime:color.red,text_size size.large)
        
    table.cell(t26str.tostring(sar_6"#.##"), text_color=color.whitetext_size=table_text_size,bgcolor color.rgb(212121))

        
    table.cell(t07tf7text_color=color.whitetext_size=table_text_size,bgcolor color.rgb(212121))
        
    table.cell(t17text="●"text_color=trend_indicator_7==uptrend_indicator?color.lime:color.red,text_size size.large)
        
    table.cell(t27str.tostring(sar_7"#.##"), text_color=color.whitetext_size=table_text_size,bgcolor color.rgb(212121))

        
    table.cell(t08tf8text_color=color.whitetext_size=table_text_size,bgcolor =  color.rgb(212121))
        
    table.cell(t18text="●"text_color=trend_indicator_8==uptrend_indicator?color.lime:color.red,text_size size.large)
        
    table.cell(t28str.tostring(sar_8"#.##"), text_color=color.whitetext_size=table_text_size,bgcolor color.rgb(212121))

        
    table.cell(t09tf9text_color=color.whitetext_size=table_text_size,bgcolor =  color.rgb(212121))
        
    table.cell(t19text="●"text_color=trend_indicator_9==uptrend_indicator?color.lime:color.red,text_size size.large)
        
    table.cell(t29str.tostring(sar_9"#.##"), text_color=color.whitetext_size=table_text_size,bgcolor color.rgb(212121))

        
    table.cell(t010tf10text_color=color.whitetext_size=table_text_size,bgcolor =  color.rgb(212121))
        
    table.cell(t110text="●"text_color=trend_indicator_10==uptrend_indicator?color.lime:color.red,text_size size.large)
        
    table.cell(t210str.tostring(sar_10"#.##"), text_color=color.whitetext_size=table_text_size,bgcolor color.rgb(212121))

     
    table.cell(t,0,0,"Periyot",text_color color.white,bgcolor color.rgb(212121))
    table.cell(t,1,0,"Trend",text_color color.white,bgcolor color.rgb(212121))
    table.cell(t,2,0,"Fiyat",text_color color.white,bgcolor color.rgb(212121))

    lookback input.int(5"Line Lookback Period"minval=1)

    //@version=6
    start3 input(0.0)
    increment3 input(0.01)
    maximum3 input(0.2)
    s1 ta.sar(start3increment3maximum3)
    lookBack1 input(20)
    //
    multi input.float(2title 'Multiplier'minval 0.001maxval 2)

    mean ta.ema(s1lookBack1)
    stddev multi ta.stdev(s1lookBack1)
    mean stddev
    s2 
    mean stddev

    meanp 
    plot(meantitle 'OrtaKanal'color color.new(color.fuchsia0))
    bsign plot(btitle 'ÜstKanal 'color color.new(color.green0), linewidth 2)
    ssign plot(s2title 'AltKanal 'color color.new(color.red0), linewidth 2)
    ////////////////////////// 
    stil oynamaları yapıldı....
    16.07.2024 - 10.12.2024


Sayfa 280/281 İlkİlk ... 180230270278279280281 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
  •