Artan
Azalan
İşlem
BIST 30
BIST 50
BIST 100
NASDAQ 100
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
119,90 10% 1,16 Mr 110,30 / 119,90
3,63 10% 501,00 Mn 3,31 / 3,63
8,14 10% 2,47 Mr 7,54 / 8,14
53,90 10% 982,81 Mn 47,32 / 53,90
34,80 9.99% 91,16 Mn 34,80 / 34,80
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
2,90 -9.94% 955,51 Mn 2,90 / 3,13
1.353,00 -9.68% 284,03 Mn 1.349,00 / 1.508,00
7,81 -8.12% 11,40 Mn 7,80 / 8,01
21,92 -7.74% 421,11 Mn 21,42 / 24,44
269,25 -7.16% 258,51 Mn 268,25 / 290,00
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
329,00 3.7% 35,57 Mr 317,75 / 335,00
3,14 2.61% 34,03 Mr 3,03 / 3,32
39,30 4.86% 15,25 Mr 37,14 / 39,36
15,11 4.64% 14,63 Mr 14,36 / 15,11
83,55 6.98% 13,83 Mr 77,40 / 83,85
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
19,42 4.52% 1,50 Mr 18,28 / 19,42
83,55 6.98% 13,83 Mr 77,40 / 83,85
414,00 0.73% 8,67 Mr 407,00 / 417,50
196,70 2.45% 9,71 Mr 189,40 / 197,60
765,00 2.55% 4,53 Mr 742,50 / 770,50
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
19,42 4.52% 1,50 Mr 18,28 / 19,42
83,55 6.98% 13,83 Mr 77,40 / 83,85
95,55 2.52% 697,12 Mn 92,75 / 95,95
118,70 2.33% 332,28 Mn 114,90 / 119,30
414,00 0.73% 8,67 Mr 407,00 / 417,50
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
19,42 4.52% 1,50 Mr 18,28 / 19,42
32,04 3.96% 257,43 Mn 30,62 / 32,14
83,55 6.98% 13,83 Mr 77,40 / 83,85
10,95 2.34% 240,15 Mn 10,71 / 10,95
80,10 -1.6% 845,03 Mn 78,55 / 82,95

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 : 3139 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
  •