Sayfa 286/287 İlkİlk ... 186236276284285286287 SonSon
Arama sonucu : 2292 madde; 2,281 - 2,288 arası.

Konu: Tradingview

  1. https://tr.tradingview.com/script/lu...nge-Filter-DW/
    Range Filter [DW]

    99 yorum... bu script için..... görüntü bu...https://www.tradingview.com/x/w0cOQZC7/

    benim üstte yaptığım kombine....https://www.tradingview.com/x/XaHWsqI3/

    ikisinin karşılaştırması...https://www.tradingview.com/x/IuReVFoK/ sarı renklendirildi....
    16.07.2024 - 10.12.2024




  2. 16.07.2024 - 10.12.2024

  3. https://tr.tradingview.com/script/C3...T3-ChartPrime/
    RSI-Adaptive T3 [ChartPrime]

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

    //@version=6
    indicator('RSI-Adaptive T3 [ChartPrime]'overlay true)


    // --------------------------------------------------------------------------------------------------------------------}
    // 📌 𝙐𝙎𝙀𝙍 𝙄𝙉𝙋𝙐𝙏𝙎
    // --------------------------------------------------------------------------------------------------------------------{

    src         close
    rsiLen      
    input.int(14'RSI Length'group "T3")
    minLen      input.int(5'Min T3 Length'group "T3")
    maxLen      input.int(50'Max T3 Length'group "T3")
    v           input.float(0.7'T3 Volume Factor'step 0.01maxval 2minval 0.1group "T3")
    color_up    input.color(#21b8f3)
    color_dn    input.color(#fd761b)


    grp_vol_b   'Volatility Bands'
    show_bands  input.bool(true'Display'group grp_vol_binline "vol")
    vol_col     input.color(#21c9f380, "", group = grp_vol_b, inline = "vol")
    volat       input.int(100'Volatility'group grp_vol_b)


    // --------------------------------------------------------------------------------------------------------------------}
    // 📌 𝙄𝙉𝘿𝙄𝘾𝘼𝙏𝙊𝙍 𝘾𝘼𝙇𝘾𝙐𝙇𝘼𝙏𝙄𝙊𝙉𝙎
    // --------------------------------------------------------------------------------------------------------------------{

    // Step 1: Adaptive length via RSI
    rsi ta.rsi(srcrsiLen)
    rsi_scale rsi 100
    len 
    math.round(minLen + (maxLen minLen) * rsi_scale)

    pine_ema(srclength) =>
        
    alpha / (length 1)
        
    sum 0.0
        sum 
    := na(sum[1]) ? src alpha src + (alpha) * nz(sum[1])
        
    sum

    // Step 2: T3 with adaptive length
    e1 pine_ema(srclen)
    e2 pine_ema(e1len)
    e3 pine_ema(e2len)
    e4 pine_ema(e3len)
    e5 pine_ema(e4len)
    e6 pine_ema(e5len)

    c1 = -v
    c2 
    v
    c3 
    = -v
    c4 
    v
    t3 
    c1 e6 c2 e5 c3 e4 c4 e3

    t3_col 
    t3 t3[2] ? color_up color_dn

    stdv 
    ta.stdev(t3volat)

    // --------------------------------------------------------------------------------------------------------------------}
    // 📌 𝙑𝙄𝙎𝙐𝘼𝙇𝙄𝙕𝘼𝙏𝙄𝙊𝙉
    // --------------------------------------------------------------------------------------------------------------------{

    pt31 plot(t3color t3_collinewidth 1editable false)
    pt32 plot(t3[2], color t3_collinewidth 1editable false)
    fill(pt31pt32color.new(t3_col90))

    pu plot(t3 stdv"Upper Volatility Band"style plot.style_crosscolor vol_coldisplay show_bands display.all display.none)
    pl plot(t3 stdv"Lower Volatility Band"style plot.style_crosscolor vol_coldisplay show_bands display.all display.none)
    fill(puplcolor.new(vol_col95), display show_bands display.all display.none)


    plotchar(ta.crossover(t3t3[2]) or ta.crossunder(t3t3[2]) ? t3 na"""🞛"location.absolutet3_col)

    if 
    barstate.islast
        tbl 
    table.new(position.middle_right1010)

        
    tbl.cell(01''text_color chart.fg_colortext_halign text.align_right)
        
    tbl.cell(11'▼' str.tostring(maxLen), text_color color_up)

        
    tbl.cell(03''text_color chart.fg_colortext_halign text.align_right)
        
    tbl.cell(13'▲' str.tostring(minLen), text_color color_dn)

        
    tbl.cell(02'RSI Adaptive Length:'text_color chart.fg_color)
        
    tbl.cell(12str.tostring(len), text_color color.from_gradient(lenminLenmaxLencolor_dncolor_up))

    // --------------------------------------------------------------------------------------------------------------------} 
    16.07.2024 - 10.12.2024

  4. https://tr.tradingview.com/script/tH...trength-Index/
    Directional Strength Index
    PHP Code:
    //@ Julien_Eche

    //@version=6
    indicator("Directional Strength Index"overlay=truemax_labels_count=500)

    length input.int(20title="SMEMA Length")
    table_size input.string("normal"title="Table Size"options=["small""normal""large"])
    table_text_size table_size

    show_deviation_lines 
    input.bool(truetitle="Show Deviation Levels")
    show_tf_cells input.bool(truetitle="Show All Timeframes")

    approach input.string("Long Term"title="Overall Trend Weighting"options=["Long Term""Swing Trading""Short Term"])

    color_bull input.color(#00897B, title="Bull Color", inline="col")
    color_bear input.color(#C0392B, title="Bear Color", inline="col")
    color_neutral input.color(#C49A6C, title="Neutral Color", inline="col")

    get_trend_arrow(score) => score >= 0.5 "➚" score <= -0.5 "➘" "➡"
    get_trend_strength(score) => str.tostring(math.round(math.abs(score))) + "/10"
    trend_col(score) => score 0.5 color_bull score < -0.5 color_bear color_neutral
    get_dynamic_color
    (scorealpha) => color.new(trend_col(score), alpha)

    get_band_color(levelsrcscoreis_uppercol_bullcol_bear) =>
        
    math.abs(src level) / ta.percentile_linear_interpolation(math.abs(src level), 400100)
        
    score and is_upper col_bull score and not is_upper col_bear na
        result 
    na(c) ? na <= 0.03 color.new(c96) : <= 0.06 color.new(c90) : <= 0.10 color.new(c80) : <= 0.15 color.new(c68) : <= 0.20 color.new(c55) : <= 0.27 color.new(c42) : <= 0.35 color.new(c30) : color.new(c18)
        
    result

    get_score_internal
    () =>
        
    sm ta.sma(ta.ema(closelength), length)
        
    sm_prev ta.sma(ta.ema(close[1], length), length)
        
    step ta.atr(100)
        
    slope sm sm_prev
        slope_ratio 
    slope sm
        slope_ratio 
    := slope_ratio 0.1 0.1 slope_ratio < -0.1 ? -0.1 slope_ratio
        slope_weight 
    1.0 slope_ratio 10.0
        bull 
    = (close sm step 0) + (close sm step 0) + (close sm step 0)
        
    bear = (close sm step 0) + (close sm step 0) + (close sm step 0)
        
    raw_score = (bull bear) * 10.0 3.0
        adjusted_score 
    raw_score slope_weight
        adjusted_score 
    := adjusted_score 10.0 10.0 adjusted_score < -10.0 ? -10.0 adjusted_score
        adjusted_score

    get_score
    (tf) => request.security(syminfo.tickeridtfget_score_internal(), lookahead=barmerge.lookahead_on)

    score_1H get_score("60")
    score_4H get_score("240")
    score_1D get_score("D")
    score_3D get_score("3D")
    score_1W get_score("W")
    score_1M get_score("M")

    w_1H approach == "Short Term" 0.35 approach == "Swing Trading" 0.10 0.03
    w_4H 
    approach == "Short Term" 0.30 approach == "Swing Trading" 0.15 0.07
    w_1D 
    approach == "Short Term" 0.20 approach == "Swing Trading" 0.25 0.20
    w_3D 
    approach == "Short Term" 0.10 approach == "Swing Trading" 0.25 0.25
    w_1W 
    approach == "Short Term" 0.05 approach == "Swing Trading" 0.15 0.35
    w_1M 
    approach == "Short Term" 0.00 approach == "Swing Trading" 0.10 0.10

    global_score 
    score_1H w_1H score_4H w_4H score_1D w_1D score_3D w_3D score_1W w_1W score_1M w_1M

    label 
    "Global " + (approach == "Long Term" "LT" approach == "Swing Trading" "SW" "ST")

    var 
    table stats_table table.new(position=position.top_rightcolumns=3rows=8frame_color=color.new(color.gray70), frame_width=1border_width=0)
    table.set_bgcolor(stats_tablecolor.new(color.rgb(262626), 0))

    if 
    barstate.islast
        table
    .cell(stats_table00"Timeframe"text_color=color.graytext_size=table_text_size)
        
    table.cell(stats_table10"Trend"text_color=color.graytext_size=table_text_size)
        
    table.cell(stats_table20"Strength"text_color=color.graytext_size=table_text_size)
        
    row_idx 1
        
    if show_tf_cells
            
    for 0 to 5
                tf 
    == "1H" == "4H" == "1D" == "3D" == "1W" "1M"
                
    sc == score_1H == score_4H == score_1D == score_3D == score_1W score_1M
                table
    .cell(stats_table0row_idxtftext_color=color.graytext_size=table_text_size)
                
    table.cell(stats_table1row_idxget_trend_arrow(sc), text_color=trend_col(sc), text_size=table_text_size)
                
    table.cell(stats_table2row_idxget_trend_strength(sc), text_color=trend_col(sc), text_size=table_text_size)
                
    row_idx := row_idx 1
        table
    .cell(stats_table0row_idxlabeltext_color=color.silvertext_size=table_text_size)
        
    table.cell(stats_table1row_idxget_trend_arrow(global_score), text_color=trend_col(global_score), text_size=table_text_size)
        
    table.cell(stats_table2row_idxget_trend_strength(global_score), text_color=trend_col(global_score), text_size=table_text_size)

    sm ta.sma(ta.ema(closelength), length)
    sm_prev ta.sma(ta.ema(close[1], length), length)
    step ta.atr(100)

    sm_bull = (close sm step 0) + (close sm step 0) + (close sm step 0)
    sm_bear = (close sm step 0) + (close sm step 0) + (close sm step 0)
    sm_score = (sm_bull sm_bear) * 10.0 3.0
    slope 
    sm sm_prev
    slope_ratio 
    slope step
    slope_ratio 
    := slope_ratio 2.0 2.0 slope_ratio < -2.0 ? -2.0 slope_ratio
    slope_weight 
    1.0 slope_ratio 0.25
    adjusted_sm_score 
    sm_score slope_weight
    adjusted_sm_score 
    := adjusted_sm_score 10.0 10.0 adjusted_sm_score < -10.0 ? -10.0 adjusted_sm_score

    plot
    (show_deviation_lines sm step nacolor=get_band_color(sm step 3closeadjusted_sm_scoretruecolor_bullcolor_bear))
    plot(show_deviation_lines sm step nacolor=get_band_color(sm step 2closeadjusted_sm_scoretruecolor_bullcolor_bear))
    plot(show_deviation_lines sm step     nacolor=get_band_color(sm step    closeadjusted_sm_scoretruecolor_bullcolor_bear))
    plot(smcolor=get_dynamic_color(adjusted_sm_score0), title="SMEMA"linewidth=2)
    plot(show_deviation_lines sm step     nacolor=get_band_color(sm step    closeadjusted_sm_scorefalsecolor_bullcolor_bear))
    plot(show_deviation_lines sm step nacolor=get_band_color(sm step 2closeadjusted_sm_scorefalsecolor_bullcolor_bear))
    plot(show_deviation_lines sm step nacolor=get_band_color(sm step 3closeadjusted_sm_scorefalsecolor_bullcolor_bear)) 
    16.07.2024 - 10.12.2024

  5. 16.07.2024 - 10.12.2024

Sayfa 286/287 İlkİlk ... 186236276284285286287 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
  •