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 237/378 İlkİlk ... 137187227235236237238239247287337 ... SonSon
Arama sonucu : 3024 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/378 İ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
  •