Artan
Azalan
İşlem
BIST 30
BIST 50
BIST 100
NASDAQ 100
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
34,80 9.99% 77,90 Mn 34,80 / 34,80
17,30 9.98% 21,14 Mn 16,41 / 17,30
85,95 9.98% 149,75 Mn 76,30 / 85,95
6,39 9.98% 496,70 Mn 6,02 / 6,39
7.000,00 9.98% 243,40 Mn 6.360,00 / 7.000,00
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
103,00 -9.97% 103,36 Mn 103,00 / 113,10
2,90 -9.94% 482,24 Mn 2,90 / 3,13
6,65 -6.47% 40,53 Mn 6,59 / 6,88
3,62 -6.46% 1,55 Mn 3,62 / 3,62
7,33 -6.03% 8,37 Mn 7,33 / 7,74
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
3,30 7.84% 12,78 Mr 3,06 / 3,32
12,36 3.6% 2,91 Mr 11,64 / 12,69
319,50 0.71% 2,63 Mr 317,75 / 320,25
23,98 6.58% 2,42 Mr 22,36 / 24,18
412,00 0.24% 1,95 Mr 407,00 / 415,00
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
18,62 0.22% 214,91 Mn 18,47 / 18,66
77,90 -0.26% 1,71 Mr 77,40 / 78,50
412,00 0.24% 1,95 Mr 407,00 / 415,00
192,70 0.36% 1,56 Mr 189,40 / 193,10
749,50 0.47% 617,75 Mn 745,00 / 752,00
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
18,62 0.22% 214,91 Mn 18,47 / 18,66
77,90 -0.26% 1,71 Mr 77,40 / 78,50
93,70 0.54% 134,71 Mn 92,75 / 94,05
115,90 -0.09% 47,93 Mn 114,90 / 116,30
412,00 0.24% 1,95 Mr 407,00 / 415,00
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
18,62 0.22% 214,91 Mn 18,47 / 18,66
31,24 1.36% 47,53 Mn 30,62 / 31,52
77,90 -0.26% 1,71 Mr 77,40 / 78,50
10,72 0.19% 48,26 Mn 10,71 / 10,82
81,75 0.43% 67,26 Mn 81,45 / 82,40

Masrafsız Bankacılık + 1.000 TL Nakit! Enpara’dan Çifte Avantaj

Masrafsız Bankacılık + 1.000 TL Nakit! Enpara’dan Çifte Avantaj
Sayfa 274/393 İlkİlk ... 174224264272273274275276284324374 ... SonSon
Arama sonucu : 3138 madde; 2,185 - 2,192 arası.

Konu: Tradingview

  1. https://www.tradingview.com/x/1Ckt94HR/
    büyük periyotlarda kullanılabilir.....günlük haftalık gibi.....

    düşük periyotlarada kullanılacaksa.....değerlerde değişiklik yapılmalı....

    PHP Code:
    // © Marcin Kukulski
    //@version=6
    indicator(title="Buy Sell Indicator PRO"overlay=true)

    // Inputs
    keyValue input.float(1.0title="Key Value (Sensitivity)"step=0.5)
    atrPeriod input.int(10title="ATR Period")
    emaPeriod input.int(1title="EMA Period (default 1)")
    srLookback input.int(20title="Support/Resistance Lookback"minval=2)

    // ATR Calculation
    atrValue ta.atr(atrPeriod)
    nLoss keyValue atrValue

    // Trailing Stop Logic
    var float trailingStop na
    if (na(trailingStop))
        
    trailingStop := close nLoss

    if (close trailingStop and close[1] > trailingStop)
        
    trailingStop := math.max(trailingStopclose nLoss)
    else if (
    close trailingStop and close[1] < trailingStop)
        
    trailingStop := math.min(trailingStopclose nLoss)
    else
        
    trailingStop := close trailingStop ? (close nLoss) : (close nLoss)

    // Position tracking
    var int pos 0
    if (close[1] < trailingStop and close trailingStop)
        
    pos := 1
    else if (close[1] > trailingStop and close trailingStop)
        
    pos := -1
    else
        
    pos := pos[1]

    // Color logic
    trailColor pos == -color.red pos == color.green color.blue

    // Plot trailing stop
    plot(trailingStopcolor=trailColortitle="Trailing Stop")

    // Signal logic
    emaLine ta.ema(closeemaPeriod)
    buySignal ta.crossover(emaLinetrailingStop)
    sellSignal ta.crossunder(emaLinetrailingStop)

    // Plot shapes
    plotshape(buySignaltitle="Buy"text='Buy'style=shape.labeluplocation=location.belowbarcolor=color.greentextcolor=color.whitesize=size.small)
    plotshape(sellSignaltitle="Sell"text='Sell'style=shape.labeldownlocation=location.abovebarcolor=color.redtextcolor=color.whitesize=size.small)

    // Bar coloring
    barCol close trailingStop color.green color.red
    barcolor
    (barCol)

    // Alerts
    alertcondition(buySignaltitle="Buy Alert"message="Buy Signal!")
    alertcondition(sellSignaltitle="Sell Alert"message="Sell Signal!")

    // === Support & Resistance ===
    // Detecting swing highs and lows
    isResistance high == ta.highest(highsrLookback)
    isSupport low == ta.lowest(lowsrLookback)

    // Plotting lines
    plotshape(isResistancestyle=shape.triangledownlocation=location.abovebarcolor=color.orangesize=size.tinytitle="Resistance Marker")
    plotshape(isSupportstyle=shape.triangleuplocation=location.belowbarcolor=color.aquasize=size.tinytitle="Support Marker")

    // Draw horizontal lines (optional, limited by PineScript constraints)
    var float resistanceLevel na
    var float supportLevel na

    if isResistance
        resistanceLevel 
    := high
    if isSupport
        supportLevel 
    := low

    plot
    (resistanceLeveltitle="Resistance Level"color=color.orangelinewidth=1style=plot.style_linebr)
    plot(supportLeveltitle="Support Level"color=color.aqualinewidth=1style=plot.style_linebr
    16.07.2024 - 10.12.2024

  2. https://www.tradingview.com/x/kogwzno6/ tersleme sar....


    PHP Code:
    //@version=6
    indicator(title 'SAR_OFFSET'shorttitle 'SarOffset'overlay true)

    SAR ta.sar(0.10.10.1)
    //plot(SAR, title = 'SAR', linewidth = 1, style = plot.style_circles, color = color.new(color.orange, 0))

    sqzOn ta.valuewhen(open[0] < SARSAR0)
    sqzOff ta.valuewhen(open[0] > SARSAR0)


    BE ta.valuewhen(SAR sqzOnSAR * (sqzOn SAR), 0)
    plot(BEtitle 'BE'linewidth 1style plot.style_circlescolor color.new(color.blue0))




    SE ta.valuewhen(SAR sqzOffSAR * (SAR sqzOff), 0)
    plot(SEtitle 'SE'linewidth 1style plot.style_circlescolor color.new(color.blue0)) 
    16.07.2024 - 10.12.2024


  3. https://tr.tradingview.com/script/dyU6XM1H-REAL-SMA/

    tarih ayarlaması ve değer ayarlamasını kendinize göre yapın.....

    https://www.tradingview.com/x/slfc6CjE/ örnek görüntü....
    16.07.2024 - 10.12.2024


  4. https://www.tradingview.com/x/emHMV0tb/
    mavi 1.çinko...
    sarı 2. ve pembe tombala...
    16.07.2024 - 10.12.2024

  5. 16.07.2024 - 10.12.2024

  6. https://www.tradingview.com/x/1A8koZV9/
    dirençler kırılmak için mi....
    16.07.2024 - 10.12.2024

Sayfa 274/393 İlkİlk ... 174224264272273274275276284324374 ... 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
  •