Sayfa 285/285 İlkİlk ... 185235275283284285
Arama sonucu : 2276 madde; 2,273 - 2,276 arası.

Konu: Tradingview

  1. https://tr.tradingview.com/script/ITCgiV4j/
    Super Oscilador by Rouro
    PHP Code:
    //@version=5
    indicator("Super Oscilador by Rouro"overlay=false)

    // === INPUTS DE INDICADORES ===
    rsiPeriod      input.int(14,   title="RSI - Periodo")
    stochKPeriod   input.int(14,   title="Stochastic %K - Periodo")
    cciPeriod      input.int(20,   title="CCI - Periodo")
    rocPeriod      input.int(10,   title="ROC - Periodo")
    willrPeriod    input.int(14,   title="Williams %R - Periodo")

    rsiOver        input.int(70,   title="RSI - Sobrecompra")
    rsiUnder       input.int(30,   title="RSI - Sobreventa")
    stochOver      input.int(80,   title="Stochastic - Sobrecompra")
    stochUnder     input.int(20,   title="Stochastic - Sobreventa")
    cciOver        input.int(100,  title="CCI - Sobrecompra")
    cciUnder       input.int(-100title="CCI - Sobreventa")

    // ROC manual (por si no se usa ATR)
    rocManualOver  input.float(0.5,  title="ROC % Sobrecompra (manual)")
    rocManualUnder input.float(-0.5title="ROC % Sobreventa (manual)")

    // Selector de método dinámico
    useATR         input.bool(true,  title="Usar ATR para ROC dinámico")
    atrPeriod      input.int(14,     title="ATR - Periodo para ROC")
    atrFactor      input.float(1.0,  title="Factor ATR → umbral ROC")

    willrOver      input.int(-20,   title="Williams %R - Sobrecompra")
    willrUnder     input.int(-80,   title="Williams %R - Sobreventa")

    // OPCIONES VISUALES
    mostrarLineaBase input.bool(falsetitle="Mostrar línea base")
    emaSuavizado     input.int(5,     title="Periodo de suavizado EMA")
    nivelInferior    input.float(-0.8title="Nivel Inferior (Sobreventa)")
    nivelSuperior    input.float0.8title="Nivel Superior (Sobrecompra)")

    // === CÁLCULO DE INDICADORES ===
    rsiVal    ta.rsi(closersiPeriod)
    stochVal  ta.stoch(highlowclosestochKPeriod)
    cciVal    ta.cci(closecciPeriod)
    rocVal    ta.roc(closerocPeriod)  // ROC en %  
    den       ta.highest(highwillrPeriod) - ta.lowest(lowwillrPeriod)
    willrVal  den != ? -100 * (ta.highest(highwillrPeriod) - close) / den na

    // === CÁLCULO ROC dinámico vía ATR ===
    atrPct      ta.atr(atrPeriod) / close 100
    rocATROver  
    atrPct atrFactor
    rocATRUnder 
    = -rocATROver
    rocOver     
    useATR rocATROver  rocManualOver
    rocUnder    
    useATR rocATRUnder rocManualUnder

    // === SCORES INDIVIDUALES ===
    rsiScore   rsiVal   rsiOver    ?  rsiVal   rsiUnder    ? -0
    stochScore 
    stochVal stochOver  ?  stochVal stochUnder  ? -0
    cciScore   
    cciVal   cciOver    ?  cciVal   cciUnder    ? -0
    rocScore   
    rocVal   rocOver    ?  rocVal   rocUnder    ? -0
    willrScore 
    willrVal willrOver  ?  willrVal willrUnder  ? -0

    // === NORMALIZACIÓN & SUAVIZADO ===
    score     rsiScore stochScore cciScore rocScore willrScore
    lineaOsc  
    score 5
    emaOsc    
    ta.ema(lineaOscemaSuavizado)

    // === COLOR DINÁMICO DEL OSCILADOR ===
    oscColor emaOsc nivelSuperior color.red :
               
    emaOsc nivelInferior  color.green :
               
    color.blue

    // === PLOTS DEL OSCILADOR ===
    plot(emaOsc,                                title="EMA Súper Oscilador"color=oscColorlinewidth=2)
    plot(mostrarLineaBase lineaOsc na,     title="Línea base",          color=color.graylinewidth=1)
    hline(nivelSuperior"Sobrecompra",        color=color.new(color.red,   60), linestyle=hline.style_dashed)
    hline(0,             "Centro",             color=color.gray,                linestyle=hline.style_dotted)
    hline(nivelInferior,"Sobreventa",          color=color.new(color.green60), linestyle=hline.style_dashed)

    // === TABLA SEMÁFORO ===
    rsiState   rsiScore   ==  color.green rsiScore   == -color.red   color.gray
    stochState 
    stochScore ==  color.green stochScore == -color.red   color.gray
    cciState   
    cciScore   ==  color.green cciScore   == -color.red   color.gray
    rocState   
    rocScore   ==  color.green rocScore   == -color.red   color.gray
    willrState 
    willrScore ==  color.green willrScore == -color.red   color.gray

    var table semaforo table.new(position.top_right26border_width=1frame_width=1)
    if 
    barstate.islast
        table
    .cell(semaforo00"IND"text_color=color.whitebgcolor=color.black)
        
    table.cell(semaforo10"EST"text_color=color.whitebgcolor=color.black)
        
    table.cell(semaforo01"RSI"text_color=color.white)
        
    table.cell(semaforo11"●",   text_color=rsiState,   bgcolor=color.new(rsiState,   85))
        
    table.cell(semaforo02"STO"text_color=color.white)
        
    table.cell(semaforo12"●",   text_color=stochStatebgcolor=color.new(stochState85))
        
    table.cell(semaforo03"CCI"text_color=color.white)
        
    table.cell(semaforo13"●",   text_color=cciState,   bgcolor=color.new(cciState,   85))
        
    table.cell(semaforo04"ROC"text_color=color.white)
        
    table.cell(semaforo14"●",   text_color=rocState,   bgcolor=color.new(rocState,   85))
        
    table.cell(semaforo05"W%R"text_color=color.white)
        
    table.cell(semaforo15"●",   text_color=willrStatebgcolor=color.new(willrState85))

    // === SEÑALES DENTRO DEL PANEL DEL OSCILADOR ===
    // Venta: sale de sobrecompra (cierre bajo nivelSuperior)
    sellSignal ta.crossunder(emaOscnivelSuperior) and barstate.isconfirmed
    // Compra: sale de sobreventa (cierre sobre nivelInferior)
    buySignal  ta.crossover (emaOscnivelInferior)  and barstate.isconfirmed

    plotshape
    (series   sellSignal   nivelSuperior na,title    "Señal Venta",style    shape.triangledown,location location.absolute,size     size.small,color    color.red,text     "Sell")


    plotshape(series   buySignal    nivelInferior  na,title    "Señal Compra",style    shape.triangleup,location location.absolute,size     size.small,color    color.green,text     "Buy")

    // === ALERTAS PARA TRADINGVIEW ===
    alertcondition(sellSignal"Señal Venta""El Súper Oscilador sale de sobrecompra")
    alertcondition(buySignal,  "Señal Compra","El Súper Oscilador sale de sobreventa"
    16.07.2024 - 10.12.2024

  2. https://tr.tradingview.com/script/u7...n%C3%BC%C5%9F/
    Fibonacci Trend v7.2 - MA50 Şartsız Dönüş
    PHP Code:
    //@version=5
    strategy("Fibonacci Trend v7.2 - MA50 Şartsız Dönüş"overlay=truedefault_qty_type=strategy.percent_of_equitydefault_qty_value=100)

    // === Parametreler ===
    fibLen     input.int(50"Fibonacci Aralığı")
    fibTol     input.float(0.01"Fib Yakınlık Toleransı (%)"step=0.001)
    slMult     input.float(1.5"SL - ATR"step=0.1)
    tp2Mult    input.float(2.0"TP2 - ATR"step=0.1)
    volMult    input.float(1.5"Hacim Çarpanı"step=0.1)
    srLookback input.int(20"Destek/Direnç Mum Sayısı")

    // === Göstergeler ===
    ema50   ta.ema(close50)
    atr     ta.atr(14)
    volumeMA ta.sma(volume20)

    // === Fibonacci Seviyeleri ===
    lowestLow   ta.lowest(lowfibLen)
    highestHigh ta.highest(highfibLen)
    fibRange    highestHigh lowestLow

    f0 
    lowestLow
    f236  
    lowestLow 0.236 fibRange
    f382  
    lowestLow 0.382 fibRange
    f500  
    lowestLow 0.5   fibRange
    f618  
    lowestLow 0.618 fibRange
    f786  
    lowestLow 0.786 fibRange
    f1 
    highestHigh

    // === Fibonacci Çizgileri ===
    plot(f0title="Fib 0.0"color=color.gray)
    plot(f236title="Fib 0.236"color=color.red)
    plot(f382title="Fib 0.382"color=color.orange)
    plot(f500title="Fib 0.5"color=color.gray)
    plot(f618title="Fib 0.618"color=color.green)
    plot(f786title="Fib 0.786"color=color.green)
    plot(f1title="Fib 1.0"color=color.blue)

    // === Fitil ve Hacim Tespiti ===
    longWick   close open and (low f0 or math.abs(low f0)/close fibTol)
    shortWick  close open and (high f1 or math.abs(high f1)/close fibTol)

    volSpike   volume volumeMA volMult

    // === Long / Short Koşulları ===
    canLong  longWick and volSpike
    canShort 
    shortWick and volSpike

    // Önceki poz kontrolü
    notInPosition strategy.position_size == 0

    // === Sinyaller ===
    if canLong and notInPosition
        strategy
    .entry("Long"strategy.long)
        
    entry close
        sl 
    entry atr slMult
        tp 
    entry atr tp2Mult
        strategy
    .exit("TP/SL Long"from_entry="Long"stop=sllimit=tp)

    if 
    canShort and notInPosition
        strategy
    .entry("Short"strategy.short)
        
    entry close
        sl 
    entry atr slMult
        tp 
    entry atr tp2Mult
        strategy
    .exit("TP/SL Short"from_entry="Short"stop=sllimit=tp)

    // === Etiketler ===
    plotshape(canLong and notInPositionlocation=location.belowbarcolor=color.greenstyle=shape.labeluptext="Long")
    plotshape(canShort and notInPositionlocation=location.abovebarcolor=color.redstyle=shape.labeldowntext="Short"
    16.07.2024 - 10.12.2024

  3. https://tr.tradingview.com/script/MX8EUksX/
    Super SMA 5 8 13
    PHP Code:
    // This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
    // © tamerbozoglu
    //@version=4

    // ══════════════════════════════════════════════════════════════════════════════════════════════════ //
    //# * ══════════════════════════════════════════════════════════════════════════════════════════════
    //# *
    //# * Study       : SMA 5 8 13 Buy / Sell Signal
    //# * Author      : @BozzTamer
    //# * Strategist  : @xtrader_
    //# * Revision History
    //# * Release     : Sep 17, 2023
    //# * 
    //# *
    //# * ══════════════════════════════════════════════════════════════════════════════════════════════
    // ══════════════════════════════════════════════════════════════════════════════════════════════════ //
    //
    //This indicator is based on the 5 8 13 simple moving average strategy of strategist Selcuk Gonencler.
    //The indicator shows buy and sell signals when favorable conditions occur.

    // ══ H O W    T O    U S E ══════════════════════════════════════════════════════════════════════════ //
    // Above 5-8-13 - Confirmed hold/buy
    // 5 below (8-13 above) - Be careful, lose weight but don't run away.
    // Below 5-8 (above 13) - Risk has begun. Don't be stubborn. 13 is your last castle.
    // 5-8-13 below. Don't fight! Wait until it rises above 5-8 again.

    study(title="Super SMA 5 8 13"overlay=true)

    src close
    ma5 
    sma(src5)
    ma8 sma(src8)
    ma13 sma(src13)
    buy_cond cross(ma5ma13) and ma5 ma13
    sell_cond 
    cross(ma5ma13) and ma5 ma8 and ma5 ma13

    plot
    ma5color=color.rgb(02558), style=plot.style_linetitle="SMA 5"linewidth=2transp 0)
    plotma8color=color.rgb(2552300), style=plot.style_linetitle="SMA 8"linewidth=2transp 0)
    plotma13color=color.rgb(25500), style=plot.style_linetitle="SMA 13"linewidth=2transp 0)

    plotarrow(buy_cond 0colordown=color.rgb(02558), title="BUY SIGNAL",maxheight=50minheight=50transp 0)
    plotarrow(sell_cond ? -0colorup=color.rgb(25500), title="SELL SIGNAL",maxheight=50minheight=50transp 0)

    alertcondition(buy_condtitle "Buy Condition"message "Buy Alert!")
    alertcondition(sell_condtitle "Sell Condition"message "Sell Alert!"
    versiyon 5 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/
    // © tamerbozoglu
    //@version=5

    // ══════════════════════════════════════════════════════════════════════════════════════════════════ //
    //# * ══════════════════════════════════════════════════════════════════════════════════════════════
    //# *
    //# * Study       : SMA 5 8 13 Buy / Sell Signal
    //# * Author      : @BozzTamer
    //# * Strategist  : @xtrader_
    //# * Revision History
    //# * Release     : Sep 17, 2023
    //# * 
    //# *
    //# * ══════════════════════════════════════════════════════════════════════════════════════════════
    // ══════════════════════════════════════════════════════════════════════════════════════════════════ //
    //
    //This indicator is based on the 5 8 13 simple moving average strategy of strategist Selcuk Gonencler.
    //The indicator shows buy and sell signals when favorable conditions occur.

    // ══ H O W    T O    U S E ══════════════════════════════════════════════════════════════════════════ //
    // Above 5-8-13 - Confirmed hold/buy
    // 5 below (8-13 above) - Be careful, lose weight but don't run away.
    // Below 5-8 (above 13) - Risk has begun. Don't be stubborn. 13 is your last castle.
    // 5-8-13 below. Don't fight! Wait until it rises above 5-8 again.

    indicator(title='Super SMA 5 8 13'overlay=true)

    src close
    ma5 
    ta.sma(src5)
    ma8 ta.sma(src8)
    ma13 ta.sma(src13)
    buy_cond ta.cross(ma5ma13) and ma5 ma13
    sell_cond 
    ta.cross(ma5ma13) and ma5 ma8 and ma5 ma13

    plot
    (ma5color=color.rgb(02558), style=plot.style_linetitle='SMA 5'linewidth=2transp=0)
    plot(ma8color=color.rgb(2552300), style=plot.style_linetitle='SMA 8'linewidth=2transp=0)
    plot(ma13color=color.rgb(25500), style=plot.style_linetitle='SMA 13'linewidth=2transp=0)

    plotarrow(buy_cond 0colordown=color.rgb(02558), title='BUY SIGNAL'maxheight=50minheight=50transp=0)
    plotarrow(sell_cond ? -0colorup=color.rgb(25500), title='SELL SIGNAL'maxheight=50minheight=50transp=0)

    alertcondition(buy_condtitle='Buy Condition'message='Buy Alert!')
    alertcondition(sell_condtitle='Sell Condition'message='Sell Alert!'
    versiyon 6 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/
    // © tamerbozoglu
    //@version=6

    // ══════════════════════════════════════════════════════════════════════════════════════════════════ //
    //# * ══════════════════════════════════════════════════════════════════════════════════════════════
    //# *
    //# * Study       : SMA 5 8 13 Buy / Sell Signal
    //# * Author      : @BozzTamer
    //# * Strategist  : @xtrader_
    //# * Revision History
    //# * Release     : Sep 17, 2023
    //# * 
    //# *
    //# * ══════════════════════════════════════════════════════════════════════════════════════════════
    // ══════════════════════════════════════════════════════════════════════════════════════════════════ //
    //
    //This indicator is based on the 5 8 13 simple moving average strategy of strategist Selcuk Gonencler.
    //The indicator shows buy and sell signals when favorable conditions occur.

    // ══ H O W    T O    U S E ══════════════════════════════════════════════════════════════════════════ //
    // Above 5-8-13 - Confirmed hold/buy
    // 5 below (8-13 above) - Be careful, lose weight but don't run away.
    // Below 5-8 (above 13) - Risk has begun. Don't be stubborn. 13 is your last castle.
    // 5-8-13 below. Don't fight! Wait until it rises above 5-8 again.

    indicator(title 'Super SMA 5 8 13'overlay true)

    src close
    ma5 
    ta.sma(src5)
    ma8 ta.sma(src8)
    ma13 ta.sma(src13)
    buy_cond ta.cross(ma5ma13) and ma5 ma13
    sell_cond 
    ta.cross(ma5ma13) and ma5 ma8 and ma5 ma13

    plot
    (ma5color color.rgb(02558), style plot.style_linetitle 'SMA 5'linewidth 2)
    plot(ma8color color.rgb(2552300), style plot.style_linetitle 'SMA 8'linewidth 2)
    plot(ma13color color.rgb(25500), style plot.style_linetitle 'SMA 13'linewidth 2)

    plotarrow(buy_cond 0colordown color.rgb(02558), title 'BUY SIGNAL'maxheight 50minheight 50)
    plotarrow(sell_cond ? -0colorup color.rgb(25500), title 'SELL SIGNAL'maxheight 50minheight 50)

    alertcondition(buy_condtitle 'Buy Condition'message 'Buy Alert!')
    alertcondition(sell_condtitle 'Sell Condition'message 'Sell Alert!'
    sade hali...sinyalli...
    PHP Code:
    //@version=6
    indicator(title 'Super SMA 5 8 13'overlay true)

    src close
    ma5 
    ta.sma(src5)
    ma8 ta.sma(src8)
    ma13 ta.sma(src13)
    buy_cond ta.cross(ma5ma13) and ma5 ma13
    sell_cond 
    ta.cross(ma5ma13) and ma5 ma8 and ma5 ma13

    //plot(ma5, color = color.rgb(0, 255, 8), style = plot.style_line, title = 'SMA 5', linewidth = 2)
    //plot(ma8, color = color.rgb(255, 230, 0), style = plot.style_line, title = 'SMA 8', linewidth = 2)
    //plot(ma13, color = color.rgb(255, 0, 0), style = plot.style_line, title = 'SMA 13', linewidth = 2)

    plotarrow(buy_cond 0colordown color.rgb(02558), title 'BUY SIGNAL'maxheight 50minheight 50)
    plotarrow(sell_cond ? -0colorup color.rgb(25500), title 'SELL SIGNAL'maxheight 50minheight 50
    16.07.2024 - 10.12.2024

  4. periyotler için en iyi sma bulucu....https://tr.tradingview.com/script/WL...st-SMA-Finder/

    bunu kullanarak...

    örneğin x100 için...
    sma değerlerini değiştirerek kullanılabilir...
    1dak-15dak ve 1 saatlik için bulunan değerler uygulanınca...
    saatlik görüntü...https://www.tradingview.com/x/S2TkbLBd/
    16.07.2024 - 10.12.2024

Sayfa 285/285 İlkİlk ... 185235275283284285

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
  •