Artan
Azalan
İşlem
BIST 30
BIST 50
BIST 100
NASDAQ 100
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
3,63 10% 472,27 Mn 3,31 / 3,63
119,90 10% 1,04 Mr 110,30 / 119,90
34,80 9.99% 88,91 Mn 34,80 / 34,80
85,95 9.98% 240,75 Mn 76,30 / 85,95
6,39 9.98% 504,55 Mn 6,02 / 6,39
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
1.349,00 -9.95% 206,72 Mn 1.349,00 / 1.508,00
2,90 -9.94% 885,50 Mn 2,90 / 3,13
21,72 -8.59% 279,76 Mn 21,42 / 24,44
7,80 -8.24% 5,48 Mn 7,80 / 8,01
6,53 -8.16% 115,90 Mn 6,40 / 6,88
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
3,23 5.56% 22,56 Mr 3,06 / 3,32
319,50 0.71% 9,29 Mr 317,75 / 322,25
192,50 0.26% 5,52 Mr 189,40 / 197,00
13,02 9.14% 5,50 Mr 11,64 / 13,12
411,75 0.18% 4,35 Mr 407,00 / 416,25
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
18,41 -0.91% 506,97 Mn 18,28 / 18,66
77,95 -0.19% 3,25 Mr 77,40 / 78,50
411,75 0.18% 4,35 Mr 407,00 / 416,25
192,50 0.26% 5,52 Mr 189,40 / 197,00
745,00 -0.13% 1,57 Mr 742,50 / 752,00
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
18,41 -0.91% 506,97 Mn 18,28 / 18,66
77,95 -0.19% 3,25 Mr 77,40 / 78,50
93,55 0.38% 230,69 Mn 92,75 / 94,05
115,90 -0.09% 103,11 Mn 114,90 / 116,30
411,75 0.18% 4,35 Mr 407,00 / 416,25
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
18,41 -0.91% 506,97 Mn 18,28 / 18,66
30,96 0.45% 117,91 Mn 30,62 / 31,62
77,95 -0.19% 3,25 Mr 77,40 / 78,50
10,77 0.65% 116,46 Mn 10,71 / 10,82
81,70 0.37% 223,82 Mn 81,35 / 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 : 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
  •