Artan
Azalan
İşlem
BIST 30
BIST 50
BIST 100
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
0,53 12.77% 51,50 Mn 0,46 / 0,60
26,62 10% 3,21 Mn 26,62 / 26,62
83,05 10% 30,67 Mn 79,55 / 83,05
25,98 9.99% 30,90 Mn 23,10 / 25,98
36,14 9.98% 65,07 Mn 36,14 / 36,14
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
648,00 -10% 1,67 Mr 648,00 / 692,00
14,60 -9.99% 5,77 Mr 14,60 / 16,47
27,76 -9.99% 2,77 Mr 27,76 / 29,70
407,75 -9.99% 114,49 Mn 407,75 / 456,00
310,00 -9.95% 179,45 Mn 310,00 / 310,00
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
322,00 3.54% 23,44 Mr 307,50 / 324,75
307,50 -1.28% 18,75 Mr 303,50 / 314,00
16,91 -1.69% 11,86 Mr 16,58 / 17,53
90,15 -1.69% 10,46 Mr 89,15 / 93,50
188,00 1.62% 8,93 Mr 183,80 / 192,00
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
18,95 -2.32% 1,54 Mr 18,62 / 19,59
90,15 -1.69% 10,46 Mr 89,15 / 93,50
322,00 3.54% 23,44 Mr 307,50 / 324,75
188,00 1.62% 8,93 Mr 183,80 / 192,00
667,50 -1.48% 5,87 Mr 653,00 / 683,00
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
18,95 -2.32% 1,54 Mr 18,62 / 19,59
90,15 -1.69% 10,46 Mr 89,15 / 93,50
102,40 -2.29% 1,02 Mr 101,70 / 105,80
115,20 -2.87% 453,60 Mn 114,50 / 119,90
322,00 3.54% 23,44 Mr 307,50 / 324,75
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
18,95 -2.32% 1,54 Mr 18,62 / 19,59
33,78 0.24% 83,65 Mn 32,82 / 33,98
90,15 -1.69% 10,46 Mr 89,15 / 93,50
10,18 -1.64% 206,22 Mn 10,07 / 10,48
67,15 -3.73% 1,36 Mr 66,05 / 72,25
Sayfa 274/378 İlkİlk ... 174224264272273274275276284324374 ... SonSon
Arama sonucu : 3024 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/378 İ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
  •