Artan
Azalan
Ýþlem
BIST 30
BIST 50
BIST 100
NASDAQ 100
Hisse Fiyat Fark% Hacim (TL) Düþük / Yüksek
34,80 9.99% 77,72 Mn 34,80 / 34,80
7.000,00 9.98% 241,35 Mn 6.360,00 / 7.000,00
85,95 9.98% 145,55 Mn 76,30 / 85,95
6,39 9.98% 495,38 Mn 6,02 / 6,39
1.985,00 9.97% 106,91 Mn 1.805,00 / 1.985,00
Hisse Fiyat Fark% Hacim (TL) Düþük / Yüksek
103,00 -9.97% 102,74 Mn 103,00 / 113,10
2,92 -9.32% 438,59 Mn 2,90 / 3,13
6,60 -7.17% 37,32 Mn 6,59 / 6,88
3,62 -6.46% 1,55 Mn 3,62 / 3,62
8,01 -5.76% 1,59 Mn 8,01 / 8,01
Hisse Fiyat Fark% Hacim (TL) Düþük / Yüksek
3,29 7.52% 12,49 Mr 3,06 / 3,32
12,38 3.77% 2,83 Mr 11,64 / 12,69
319,50 0.71% 2,44 Mr 317,75 / 320,25
23,96 6.49% 2,17 Mr 22,36 / 24,06
411,75 0.18% 1,86 Mr 407,00 / 415,00
Hisse Fiyat Fark% Hacim (TL) Düþük / Yüksek
18,53 -0.27% 168,71 Mn 18,47 / 18,65
78,15 0.06% 1,57 Mr 77,40 / 78,50
411,75 0.18% 1,86 Mr 407,00 / 415,00
192,00 0% 1,33 Mr 189,40 / 193,10
749,00 0.4% 551,58 Mn 745,00 / 752,00
Hisse Fiyat Fark% Hacim (TL) Düþük / Yüksek
18,53 -0.27% 168,71 Mn 18,47 / 18,65
78,15 0.06% 1,57 Mr 77,40 / 78,50
93,75 0.59% 118,55 Mn 92,75 / 94,05
116,20 0.17% 42,86 Mn 114,90 / 116,20
411,75 0.18% 1,86 Mr 407,00 / 415,00
Hisse Fiyat Fark% Hacim (TL) Düþük / Yüksek
18,53 -0.27% 168,71 Mn 18,47 / 18,65
30,94 0.39% 34,95 Mn 30,62 / 31,30
78,15 0.06% 1,57 Mr 77,40 / 78,50
10,75 0.47% 44,56 Mn 10,71 / 10,82
81,95 0.68% 63,72 Mn 81,45 / 82,40

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 102/393 ÝlkÝlk ... 25292100101102103104112152202 ... SonSon
Arama sonucu : 3138 madde; 809 - 816 arasý.

Konu: Tradingview

  1.  Alýntý Originally Posted by @yörük@ Yazýyý Oku
    aleyküm selam....
    https://www.tradingview.com/x/2S9Ct3Gv/ bahsettiðiniz bu galiba....

    wt cross lb yi anlamadým.....

    ikisi mi birleþecek...ve bar renklenecek....anlamadým tam.....
    anladýðým kadarý ile.... sma rsý kesiþimini bar renklensin istemiþiniz....
    https://www.tradingview.com/x/HZYP2UMb/
    ben böyle yapmýþ olayým....siz yine de daha iyi bilene sorun bence....
    benim yaptýðýmda kesiþim yeri fiyat olarak belli eder ve yeþil-kýrmýzý renk ayarýndadýr....
    buyrun buda kodu.....

    //@version=5
    indicator(title="Relative Strength Index", shorttitle="RSI", format=format.price, precision=2, timeframe="", timeframe_gaps=true)

    ma(source, length, type) =>
    switch type
    "SMA" => ta.sma(source, length)
    "Bollinger Bands" => ta.sma(source, length)
    "EMA" => ta.ema(source, length)
    "SMMA (RMA)" => ta.rma(source, length)
    "WMA" => ta.wma(source, length)
    "VWMA" => ta.vwma(source, length)

    rsiLengthInput = input.int(14, minval=1, title="RSI Length", group="RSI Settings")
    rsiSourceInput = input.source(close, "Source", group="RSI Settings")
    maTypeInput = input.string("SMA", title="MA Type", options=["SMA", "Bollinger Bands", "EMA", "SMMA (RMA)", "WMA", "VWMA"], group="MA Settings")
    maLengthInput = input.int(14, title="MA Length", group="MA Settings")
    bbMultInput = input.float(2.0, minval=0.001, maxval=50, title="BB StdDev", group="MA Settings")

    up = ta.rma(math.max(ta.change(rsiSourceInput), 0), rsiLengthInput)
    down = ta.rma(-math.min(ta.change(rsiSourceInput), 0), rsiLengthInput)
    rsi = down == 0 ? 100 : up == 0 ? 0 : 100 - (100 / (1 + up / down))
    rsiMA = ma(rsi, maLengthInput, maTypeInput)
    isBB = maTypeInput == "Bollinger Bands"

    plot(rsi, "RSI", color=#7E57C2)
    plot(rsiMA, "RSI-based MA", color=color.yellow)
    rsiUpperBand = hline(70, "RSI Upper Band", color=#787B86)
    hline(50, "RSI Middle Band", color=color.new(#787B86, 50))
    rsiLowerBand = hline(30, "RSI Lower Band", color=#787B86)
    fill(rsiUpperBand, rsiLowerBand, color=color.rgb(126, 87, 194, 90), title="RSI Background Fill")
    bbUpperBand = plot(isBB ? rsiMA + ta.stdev(rsi, maLengthInput) * bbMultInput : na, title = "Upper Bollinger Band", color=color.green)
    bbLowerBand = plot(isBB ? rsiMA - ta.stdev(rsi, maLengthInput) * bbMultInput : na, title = "Lower Bollinger Band", color=color.green)
    fill(bbUpperBand, bbLowerBand, color= isBB ? color.new(color.green, 90) : na, title="Bollinger Bands Background Fill")

    // bullish if fast > slow, else bearish
    bullish = rsi >= rsiMA
    bearish = not bullish
    did_cross_up = bearish[1] and bullish
    did_cross_dn = bullish[1] and bearish

    // Store prices that the crosses occured at.
    var float[] cross_up_prices = array.new_float(1, 0.0)
    var float[] cross_dn_prices = array.new_float(1, 0.0)

    // Push closing price if cross up or down.
    if (did_cross_up)
    array.push(cross_up_prices, close)

    if (did_cross_dn)
    array.push(cross_dn_prices, close)

    // Plotting.
    plot(bullish ? array.get(cross_up_prices, array.size(cross_up_prices)-1) : array.get(cross_dn_prices, array.size(cross_dn_prices)-1), title="kesisim",color=bullish ? color.lime : color.red, style=plot.style_circles, transp=00, linewidth=1)
    barcolor(bullish ? color.green : color.red)
    16.07.2024 - 10.12.2024

  2. bu arada söylediðiniz rsý updated kodu time frame içerdiði için ....
    grafiðin fitil ve kenarlýðýný kaldýrýr.....
    örneðin 5 dakikalýk grafiðe.... ayarlardan 3 dakkayý getirirseniz.....
    ortaya çýkan sonuçlara.....

    örnekler....
    https://www.tradingview.com/x/FOJIp2GV/
    https://www.tradingview.com/x/mJ113mjh/
    https://www.tradingview.com/x/mR1KsYZN/
    https://www.tradingview.com/x/Bd6ZP3a0/

    backtestlerini yapmak gerek....
    16.07.2024 - 10.12.2024

  3.  Alýntý Originally Posted by @yörük@ Yazýyý Oku
    aleyküm selam....
    https://www.tradingview.com/x/2S9Ct3Gv/ bahsettiðiniz bu galiba....

    wt cross lb yi anlamadým.....

    ikisi mi birleþecek...ve bar renklenecek....anlamadým tam.....
    Yok wt cross bar ile birlesmeyecek sadece belirttigim rsi updated indikatorunde kesisimlerde indikator bolumunde yukari kesisimlerde yesil ve asagi kesisimlerde kirmizi noktalama yapsin istiyorum. Ayrica bu kesimler oldugunda bari da renklendirsin istiyorum

    Wt cross lb de oldugu gibi

    SM-M526BR cihazýmdan Tapatalk kullanýlarak gönderildi

  4.  Alýntý Originally Posted by Corbaciyan Yazýyý Oku
    Yok wt cross bar ile birlesmeyecek sadece belirttigim rsi updated indikatorunde kesisimlerde indikator bolumunde yukari kesisimlerde yesil ve asagi kesisimlerde kirmizi noktalama yapsin istiyorum. Ayrica bu kesimler oldugunda bari da renklendirsin istiyorum

    Wt cross lb de oldugu gibi

    SM-M526BR cihazýmdan Tapatalk kullanýlarak gönderildi
    Selamlar.
    Yörük hocamýn izniyle...
    Þöyle bir þey istiyorsunuz sanýrým.
    (Renkleri kendinize göre deðiþtirirsiniz):





    Kod:
    //@version=5
    indicator(title="Relative Strength Index", shorttitle="RSI", format=format.price, precision=2, timeframe="", timeframe_gaps=true)
    
    ma(source, length, type) =>
        switch type
            "SMA" => ta.sma(source, length)
            "Bollinger Bands" => ta.sma(source, length)
            "EMA" => ta.ema(source, length)
            "SMMA (RMA)" => ta.rma(source, length)
            "WMA" => ta.wma(source, length)
            "VWMA" => ta.vwma(source, length)
    
    rsiLengthInput = input.int(14, minval=1, title="RSI Length", group="RSI Settings")
    rsiSourceInput = input.source(close, "Source", group="RSI Settings")
    maTypeInput = input.string("SMA", title="MA Type", options=["SMA", "Bollinger Bands", "EMA", "SMMA (RMA)", "WMA", "VWMA"], group="MA Settings")
    maLengthInput = input.int(14, title="MA Length", group="MA Settings")
    bbMultInput = input.float(2.0, minval=0.001, maxval=50, title="BB StdDev", group="MA Settings")
    
    up = ta.rma(math.max(ta.change(rsiSourceInput), 0), rsiLengthInput)
    down = ta.rma(-math.min(ta.change(rsiSourceInput), 0), rsiLengthInput)
    rsi = down == 0 ? 100 : up == 0 ? 0 : 100 - (100 / (1 + up / down))
    rsiMA = ma(rsi, maLengthInput, maTypeInput)
    isBB = maTypeInput == "Bollinger Bands"
    
    plot(rsi, "RSI", color=#7E57C2)
    plot(rsiMA, "RSI-based MA", color=color.yellow)
    rsiUpperBand = hline(70, "RSI Upper Band", color=#787B86)
    hline(50, "RSI Middle Band", color=color.new(#787B86, 50))
    rsiLowerBand = hline(30, "RSI Lower Band", color=#787B86)
    fill(rsiUpperBand, rsiLowerBand, color=color.rgb(126, 87, 194, 90), title="RSI Background Fill")
    bbUpperBand = plot(isBB ? rsiMA + ta.stdev(rsi, maLengthInput) * bbMultInput : na, title = "Upper Bollinger Band", color=color.green)
    bbLowerBand = plot(isBB ? rsiMA - ta.stdev(rsi, maLengthInput) * bbMultInput : na, title = "Lower Bollinger Band", color=color.green)
    fill(bbUpperBand, bbLowerBand, color= isBB ? color.new(color.green, 90) : na, title="Bollinger Bands Background Fill")
    
    barcolor(ta.crossover(rsi, rsiMA) ? color.new(color.yellow, 0) : ta.crossunder(rsi, rsiMA) ? color.new(color.blue, 0) : na)
    
    plot(ta.cross(rsi, rsiMA) ? rsiMA : na, color=color.new(color.black, 0), style=plot.style_circles, linewidth=3)
    plot(ta.cross(rsi, rsiMA) ? rsiMA : na, color=rsiMA - rsi > 0 ? color.red : color.lime, style=plot.style_circles, linewidth=2)

    Kod:

  5.  Alýntý Originally Posted by KýsaVade Yazýyý Oku
    Selamlar.
    Yörük hocamýn izniyle...
    Þöyle bir þey istiyorsunuz sanýrým.
    (Renkleri kendinize göre deðiþtirirsiniz):





    Kod:
    //@version=5
    indicator(title="Relative Strength Index", shorttitle="RSI", format=format.price, precision=2, timeframe="", timeframe_gaps=true)
    
    ma(source, length, type) =>
        switch type
            "SMA" => ta.sma(source, length)
            "Bollinger Bands" => ta.sma(source, length)
            "EMA" => ta.ema(source, length)
            "SMMA (RMA)" => ta.rma(source, length)
            "WMA" => ta.wma(source, length)
            "VWMA" => ta.vwma(source, length)
    
    rsiLengthInput = input.int(14, minval=1, title="RSI Length", group="RSI Settings")
    rsiSourceInput = input.source(close, "Source", group="RSI Settings")
    maTypeInput = input.string("SMA", title="MA Type", options=["SMA", "Bollinger Bands", "EMA", "SMMA (RMA)", "WMA", "VWMA"], group="MA Settings")
    maLengthInput = input.int(14, title="MA Length", group="MA Settings")
    bbMultInput = input.float(2.0, minval=0.001, maxval=50, title="BB StdDev", group="MA Settings")
    
    up = ta.rma(math.max(ta.change(rsiSourceInput), 0), rsiLengthInput)
    down = ta.rma(-math.min(ta.change(rsiSourceInput), 0), rsiLengthInput)
    rsi = down == 0 ? 100 : up == 0 ? 0 : 100 - (100 / (1 + up / down))
    rsiMA = ma(rsi, maLengthInput, maTypeInput)
    isBB = maTypeInput == "Bollinger Bands"
    
    plot(rsi, "RSI", color=#7E57C2)
    plot(rsiMA, "RSI-based MA", color=color.yellow)
    rsiUpperBand = hline(70, "RSI Upper Band", color=#787B86)
    hline(50, "RSI Middle Band", color=color.new(#787B86, 50))
    rsiLowerBand = hline(30, "RSI Lower Band", color=#787B86)
    fill(rsiUpperBand, rsiLowerBand, color=color.rgb(126, 87, 194, 90), title="RSI Background Fill")
    bbUpperBand = plot(isBB ? rsiMA + ta.stdev(rsi, maLengthInput) * bbMultInput : na, title = "Upper Bollinger Band", color=color.green)
    bbLowerBand = plot(isBB ? rsiMA - ta.stdev(rsi, maLengthInput) * bbMultInput : na, title = "Lower Bollinger Band", color=color.green)
    fill(bbUpperBand, bbLowerBand, color= isBB ? color.new(color.green, 90) : na, title="Bollinger Bands Background Fill")
    
    barcolor(ta.crossover(rsi, rsiMA) ? color.new(color.yellow, 0) : ta.crossunder(rsi, rsiMA) ? color.new(color.blue, 0) : na)
    
    plot(ta.cross(rsi, rsiMA) ? rsiMA : na, color=color.new(color.black, 0), style=plot.style_circles, linewidth=3)
    plot(ta.cross(rsi, rsiMA) ? rsiMA : na, color=rsiMA - rsi > 0 ? color.red : color.lime, style=plot.style_circles, linewidth=2)

    Kod:
    Evet tam olarak bu

    yoruk bey - kisavade cok tesekkur ederim ilginize alakaniza

    SM-M526BR cihazýmdan Tapatalk kullanýlarak gönderildi

  6.  Alýntý Originally Posted by Corbaciyan Yazýyý Oku
    Evet tam olarak bu

    yoruk bey - kisavade cok tesekkur ederim ilginize alakaniza

    SM-M526BR cihazýmdan Tapatalk kullanýlarak gönderildi
    Güle güle kullanýn.
    Bol kazançlar.
    Repaint yapabilir. Uyarayým.

  7. ellerine saðlýk....kýsavade hocam...teþekkür ve selam ederim...
    16.07.2024 - 10.12.2024

  8.  Alýntý Originally Posted by @yörük@ Yazýyý Oku
    ellerine saðlýk....kýsavade hocam...teþekkür ve selam ederim...
    Bilmukabele. Kolay gelsin.

Sayfa 102/393 ÝlkÝlk ... 25292100101102103104112152202 ... 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
  •