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 237/393 İlkİlk ... 137187227235236237238239247287337 ... SonSon
Arama sonucu : 3139 madde; 1,889 - 1,896 arası.

Konu: Tradingview

  1. https://tr.tradingview.com/script/l1...ody-30min-avg/

    bar boyundan range hesaplıyor...
    16.07.2024 - 10.12.2024

  2. https://tr.tradingview.com/script/jC...EMA-Indicator/

    ema çizdirmiş....

    bence en güzel kullanımı.... günlük mtf yaptırmak......

    PHP Code:
     // This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
    // © thehumbletrader2021

    //@version=5
    indicator("ASTA EMA Indicator"overlay true )

    price request.security(syminfo.tickerid"720"close)
    EMA_5 ta.ema(price5)
    EMA_13 ta.ema(price13)
    EMA_26 ta.ema(price26)
    EMA_50 ta.ema(price50)
    EMA_100 ta.ema(price100)
    EMA_200 ta.ema(price200)


    plot(EMA_5,"5 EMA",color.rgb(62232238100), 1)
    plot(EMA_13,"13 EMA",color.rgb(16123663100), 1)
    plot(EMA_26,"26 EMA",color.rgb(14618966100), 1)
    plot(EMA_50,"50 EMA",color.rgb(2292456100), 1)
    plot(EMA_100,"100 EMA",color.rgb(2551660100), 1)
    plot(EMA_200,"200 EMA"color.rgb(25500100), 1
    böyle olabilir yani...
    16.07.2024 - 10.12.2024

  3. https://tr.tradingview.com/script/RO...urable-Alerts/

    kodu içine 5-20 ayarlanırsa daha iyi gibi....
    16.07.2024 - 10.12.2024


  4. https://www.tradingview.com/x/xu8ga8xz/

    1 dakkalık range genişlikleri müthiş...
    16.07.2024 - 10.12.2024

  5. 16.07.2024 - 10.12.2024

  6.  Alıntı Originally Posted by @yörük@ Yazıyı Oku
    bugün cezalar gelir mi acaba...
    işlem yaptığıma ceza gelmiş
    16.07.2024 - 10.12.2024

  7. https://tr.tradingview.com/v/p4B3AMHW/

    değişik bir hesaplama....
    ema yapıp...100 uzunluğu 55 ile sloplayıp...0382 ile kullanınca....
    https://www.tradingview.com/x/a7GSzh9T/

    15 lik periyot daha iyi gibi....

    dediğim gibi...düzenlenmiş hali....

    PHP Code:
     //@version=5
    indicator("Foxy's Acceleration Bands"overlay=true)

    ma(sourcelengthtype) =>
        switch 
    type
            
    "SMA" => ta.sma(sourcelength)
            
    "EMA" => ta.ema(sourcelength)
            
    "SMMA (RMA)" => ta.rma(sourcelength)
            
    "WMA" => ta.wma(sourcelength)
            
    "VWMA" => ta.vwma(sourcelength)

    factorinput(0.001382)
    length input(100)
    mult input.float(0.382title="Mult")
    show_middle_bands input.bool(truetitle="Show Middle Bands")
    show_upper_bands input.bool(truetitle="Show Upper Bands")
    maTypeInput input.string("EMA"title="Band MA Type"options=["SMA""EMA""SMMA (RMA)""WMA""VWMA"], group="MA Settings")
    middleTypeInput input.string("EMA"title="Middle MA Type"options=["SMA""EMA""SMMA (RMA)""WMA""VWMA"], group="MA Settings")

    logHigh math.log10(high)
    logLow math.log10(low)
    logClose math.log10(close)
    logAvg math.log10((high low) / 2)

    logUppestband ma(logHigh * (* (((logHigh logLow) / (logAvg)) * 1000) * factor * (1+mult)), lengthmaTypeInput)
    logUpperband ma(logHigh * (* (((logHigh logLow) / (logAvg)) * 1000) * factor), lengthmaTypeInput)
    logLowerband ma(logLow * (* (((logHigh logLow) / (logAvg)) * 1000) * factor), lengthmaTypeInput)
    logLowestband ma(logLow * (* (((logHigh logLow) / (logAvg)) * 1000) * factor / (1-mult)), lengthmaTypeInput)
    logCentral ma(logCloselengthmiddleTypeInput)

    Uppestband math.pow(10logUppestband)
    Upperband math.pow(10logUpperband)
    Central math.pow(10logCentral)
    Lowerband math.pow(10logLowerband)
    Lowestband math.pow(10logLowestband)

    //plot(Uppestband, color=color.red, linewidth=2, display=show_upper_bands ? display.all : display.none)
    //plot(Upperband, color=color.red, linewidth=1, display=show_middle_bands ? display.all : display.none)
    //plot(Central, color=color.orange, linewidth=1, display=show_middle_bands ? display.all : display.none)
    //plot(Lowerband, color=color.green, linewidth=1, display=show_middle_bands ? display.all : display.none)
    //plot(Lowestband, color=color.green, linewidth=2, display=show_upper_bands ? display.all : display.none)


    draw_prediction input.bool(truetitle="Draw Prediction Lines")
    slope_length_type input.bool(truetitle="Use Fixed Slope Length?")
    fixed_slope_length input(55title "Slope Length"// Useful for Prediction Upto Next (80% * Slope Length) Candles
    slope_length slope_length_type fixed_slope_length last_bar_index length

    customLogarithmicRegression
    (_data_color_width) =>
        
    logData math.log10(_data)
        
    linreg ta.linreg(logDataslope_length0)
        
    linreg_p ta.linreg(logDataslope_length1)
        
    bar_index
        slope 
    linreg linreg_p
        intercept 
    linreg slope
        deviationSum 
    0.0
        
    for 0 to slope_length 1 by 1
            deviationSum 
    += math.pow(logData[i] - (slope * (i) + intercept), 2)
        
    deviation math.sqrt(deviationSum slope_length)
        
    x1 slope_length
        x2 
    x
        y1 
    slope * (slope_length) + intercept
        y2 
    linreg

        
    var line b na

        updating 
    timestamp("20 Jul 2050 00:00 +0300") >= time
        displacement 
    false

        
    if draw_prediction
            
    if updating
                b 
    := line.new(x1math.pow(10y1), x2math.pow(10y2), xloc.bar_indexextend.right_colorstyle=line.style_dottedwidth=_width)
                if 
    not displacement
                    line
    .delete(b[1])

    if 
    show_upper_bands
        customLogarithmicRegression
    (Uppestbandcolor.rgb(1219248), 2)
        
    customLogarithmicRegression(Lowestbandcolor.rgb(2219248), 2)
    if 
    show_middle_bands
        
    //customLogarithmicRegression(Upperband, color.red, 1)
        
    customLogarithmicRegression(Centralcolor.rgb(2221250), 1)
        
    //customLogarithmicRegression(Lowerband, color.green, 1) 
    16.07.2024 - 10.12.2024

Sayfa 237/393 İlkİlk ... 137187227235236237238239247287337 ... 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
  •