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 128/393 İlkİlk ... 2878118126127128129130138178228 ... SonSon
Arama sonucu : 3139 madde; 1,017 - 1,024 arası.

Konu: Tradingview


  1. Compound Value @ annual rate
    https://tr.tradingview.com/script/NT...e-annual-rate/

    kod üç defa 39-40-41 ile x100 e uygulanmış haline örnektir....
    https://www.tradingview.com/x/I8DG2hZE/
    16.07.2024 - 10.12.2024

  2. derleme çalışması versiyon 4.... birleştirme örnekleri.....

    örneklem btc...canlı veri alındığı için....
    periyot günlük..... değerlerde kısalma yapılacak....

    uzunluk takibi.....min 1...max 3 olacak şekilde.....

    strateji...osilator v.b birleşimler.....

    bu kod üzerinden başlıyoruz...
    https://www.tradingview.com/x/cz6t2Vfv/
    kod: alarmlar pasif edildi.....
    //@version=4
    study("derleme", ".", overlay = true, max_bars_back = 501)
    // Source
    src = input(hl2,defval=close, title="veri")
    per = input(defval=1, minval=1, title="1 Gün")
    // Range Multiplier
    mult = input(defval=1.0, minval=0.1, title="Aralık Bölümleme-10 Aralık")
    // Smooth Average Range
    smoothrng(x, t, m) =>
    wper = t * 2 - 1
    avrng = ema(abs(x - x[1]), t)
    smoothrng = ema(avrng, wper) * m
    smoothrng
    smrng = smoothrng(src, per, mult)

    // Range Filter
    rngfilt(x, r) =>
    rngfilt = x
    rngfilt := x > nz(rngfilt[1]) ? x - r < nz(rngfilt[1]) ? nz(rngfilt[1]) : x - r :
    x + r > nz(rngfilt[1]) ? nz(rngfilt[1]) : x + r
    rngfilt
    filt = rngfilt(src, smrng)

    // Filter Direction
    upward = 0.0
    upward := filt > filt[1] ? nz(upward[1]) + 1 : filt < filt[1] ? 0 : nz(upward[1])
    downward = 0.0
    downward := filt < filt[1] ? nz(downward[1]) + 1 : filt > filt[1] ? 0 : nz(downward[1])
    // Target Bands
    hband = filt + smrng
    lband = filt - smrng
    // Break Outs
    longCond = bool(na)
    shortCond = bool(na)
    longCond := src > filt and src > src[1] and upward > 0 or
    src > filt and src < src[1] and upward > 0
    shortCond := src < filt and src < src[1] and downward > 0 or
    src < filt and src > src[1] and downward > 0

    CondIni = 0
    CondIni := longCond ? 1 : shortCond ? -1 : CondIni[1]
    longCondition = longCond and CondIni[1] == -1
    shortCondition = shortCond and CondIni[1] == 1

    //Alerts
    plotshape(longCondition, title="Buy Signal", text="AL", textcolor=color.white, style=shape.labelup, size=size.small, location=location.belowbar, color=color.green, transp=0)
    plotshape(shortCondition, title="Sell Signal", text="SAT", textcolor=color.white, style=shape.labeldown, size=size.small, location=location.abovebar, color=color.red, transp=0)
    //alertcondition(longCondition, title="Buy Alert", message="AL")
    //alertcondition(shortCondition, title="Sell Alert", message="SAT")

    ////////////////////////////////////////////////////////////////////////////////////////////////////////

    pivot ekleme.... 3sol-1sağ takipli.....
    https://www.tradingview.com/x/bCMwaS5B/

    kod: 0 level hesaplamalar bırakıldı....diğerleri pasiflendi....renk...mor seçildi......
    //@version=4
    left = 3
    right = 1
    quick_right = 5 // Used to try and detect a more recent significant swing.
    pivot_high = pivothigh(high, left, right)
    pivot_lows = pivotlow(low, left, right)
    quick_pivot_high = pivothigh(high, left, quick_right)
    quick_pivot_lows = pivotlow(low, left, quick_right)

    level1 = valuewhen(quick_pivot_high, high[quick_right], 0)
    level2 = valuewhen(quick_pivot_lows, low[quick_right], 0)
    level3 = valuewhen(pivot_high, high[right], 0)
    level4 = valuewhen(pivot_lows, low[right], 0)
    //level5 = valuewhen(pivot_high, high[right], 1)
    //level6 = valuewhen(pivot_lows, low[right], 1)
    //level7 = valuewhen(pivot_high, high[right], 2)
    //level8 = valuewhen(pivot_lows, low[right], 2)

    level1_col = close >= level1 ? color.purple : color.purple
    level2_col = close >= level2 ? color.purple : color.purple
    level3_col = close >= level3 ? color.purple : color.purple
    level4_col = close >= level4 ? color.purple : color.purple
    //level5_col = close >= level5 ? color.yellow : color.aqua
    //level6_col = close >= level6 ? color.yellow : color.aqua
    //level7_col = close >= level7 ? color.yellow : color.aqua
    //level8_col = close >= level8 ? color.yellow : color.aqua

    plot(level1, style=plot.style_circles, color=level1_col, show_last=1, linewidth=1, trackprice=true)
    plot(level2, style=plot.style_circles, color=level2_col, show_last=1, linewidth=1, trackprice=true)
    plot(level3, style=plot.style_circles, color=level3_col, show_last=1, linewidth=1, trackprice=true)
    plot(level4, style=plot.style_circles, color=level4_col, show_last=1, linewidth=1, trackprice=true)
    //plot(level5, style=plot.style_circles, color=level5_col, show_last=1, linewidth=1, trackprice=true)
    //plot(level6, style=plot.style_circles, color=level6_col, show_last=1, linewidth=1, trackprice=true)
    //plot(level7, style=plot.style_circles, color=level7_col, show_last=1, linewidth=1, trackprice=true)
    //plot(level8, style=plot.style_circles, color=level8_col, show_last=1, linewidth=1, trackprice=true)
    16.07.2024 - 10.12.2024

  3. birleşmiş kodun saatlik görünümü...... https://www.tradingview.com/x/zDR5eJPb/
    16.07.2024 - 10.12.2024

  4. ysantur trendfollower
    https://tr.tradingview.com/v/QTaFW0eP/

    bu kodu; hl2-1-3-0.3 uygulanıp fill pasiflendiğinde.... ortaya çıkan görüntü.....
    https://www.tradingview.com/x/HGc0F3Ew/
    16.07.2024 - 10.12.2024

  5. 16.07.2024 - 10.12.2024

  6. 16.07.2024 - 10.12.2024

  7. [Zekis]Screener
    https://tr.tradingview.com/v/SlgMTvTk/

    tarama kodu.....50 ema kesişime göre tarıyor... belirlenen 20 şeyi....
    istenirse başka kodlar düzenlenebilir.....
    örnek.... https://www.tradingview.com/x/FW3Q5kE6/
    16.07.2024 - 10.12.2024

Sayfa 128/393 İlkİlk ... 2878118126127128129130138178228 ... 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
  •