Artan
Azalan
Ýþlem
BIST 30
BIST 50
BIST 100
NASDAQ 100
Hisse Fiyat Fark% Hacim (TL) Düþük / Yüksek
67,65 10% 514,47 Mn 61,70 / 67,65
1,65 10% 54,40 Mn 1,52 / 1,65
14,75 9.99% 87,06 Mn 13,54 / 14,75
19,82 9.99% 266,75 Mn 16,22 / 19,82
38,62 9.97% 385,97 Mn 37,00 / 38,62
Hisse Fiyat Fark% Hacim (TL) Düþük / Yüksek
10,53 -10% 2,11 Mr 10,53 / 11,55
20,40 -9.97% 200,70 Mn 20,40 / 23,86
402,25 -9.96% 522,85 Mn 402,25 / 448,00
260,25 -9.95% 1,60 Mr 260,25 / 283,50
4,58 -9.84% 46,35 Mn 4,58 / 4,58
Hisse Fiyat Fark% Hacim (TL) Düþük / Yüksek
324,50 0.31% 11,36 Mr 319,00 / 326,25
221,10 6.35% 9,29 Mr 209,00 / 225,00
267,75 1.81% 6,88 Mr 266,00 / 272,50
3,10 4.38% 6,79 Mr 2,98 / 3,11
78,05 -1.51% 6,66 Mr 77,60 / 79,15
Hisse Fiyat Fark% Hacim (TL) Düþük / Yüksek
19,12 -0.42% 767,09 Mn 18,66 / 19,26
78,05 -1.51% 6,66 Mr 77,60 / 79,15
394,00 -0.63% 6,13 Mr 390,25 / 404,50
221,10 6.35% 9,29 Mr 209,00 / 225,00
757,50 -0.72% 2,47 Mr 747,00 / 761,50
Hisse Fiyat Fark% Hacim (TL) Düþük / Yüksek
19,12 -0.42% 767,09 Mn 18,66 / 19,26
78,05 -1.51% 6,66 Mr 77,60 / 79,15
93,35 1.03% 500,70 Mn 91,90 / 93,65
116,70 1.3% 831,39 Mn 112,40 / 119,90
394,00 -0.63% 6,13 Mr 390,25 / 404,50
Hisse Fiyat Fark% Hacim (TL) Düþük / Yüksek
19,12 -0.42% 767,09 Mn 18,66 / 19,26
31,24 -0.19% 125,82 Mn 30,50 / 31,30
78,05 -1.51% 6,66 Mr 77,60 / 79,15
10,68 2.79% 178,02 Mn 10,40 / 10,70
81,25 2.85% 472,09 Mn 79,05 / 81,60

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 32/33 ÝlkÝlk ... 2230313233 SonSon
Arama sonucu : 257 madde; 249 - 256 arasý.

Konu: Yeni Ýndikatörler

  1. //@version=4
    //author: @kivancozbilgic

    study(title="Turtle Trade Channels Indicator", shorttitle="TuTCI", overlay=true, resolution="")
    length = input(20,"Entry Length", minval=1)
    len2=input(10, "Exit Length", minval=1)
    showsignals = input(title="Show Entry/Exit Signals ?", type=input.bool, defval=true)
    highlighting = input(title="Highlighter On/Off ?", type=input.bool, defval=true)


    lower = lowest(length)
    upper = highest(length)
    u = plot(upper, "Upper", color=#0094FF)
    l = plot(lower, "Lower", color=#0094FF)

    up=highest(high,length)
    down=lowest(low,length)
    sup=highest(high,len2)
    sdown=lowest(low,len2)
    K1=barssince(high>=up[1])<=barssince(low<=down[1]) ? down : up
    K2=iff(barssince(high>=up[1])<=barssince(low<=down[1]),sdown,sup)
    K3=iff(close>K1,down,na)
    K4=iff(close<K1,up,na)
    plot(K1, title="Trend Line", color=color.red, linewidth=3, style=2)
    e=plot(K2, title="Exit Line", color=color.blue, linewidth=1, style=6)


    buySignal=high==upper[1] or crossover(high,upper[1])
    sellSignal = low==lower[1] or crossover(lower[1],low)
    buyExit=low==sdown[1] or crossover(sdown[1],low)
    sellExit = high==sup[1] or crossover(high,sup[1])

    O1= barssince(buySignal)
    O2= barssince(sellSignal)
    O3= barssince(buyExit)
    O4= barssince(sellExit)

    E1= barssince(buySignal[1])
    E2= barssince(sellSignal[1])
    E3= barssince(buyExit[1])
    E4= barssince(sellExit[1])

    plotshape(buySignal and O3<O1[1] ? down : na, title="Long Entry", location=location.absolute, style=shape.circle, size=size.tiny, color=color.green, transp=0)
    plotshape(buySignal and showsignals and O3<O1[1] ? down : na, title="Long", text="Long Entry", location=location.absolute, style=shape.labelup, size=size.tiny, color=color.green, textcolor=color.white, transp=0)

    plotshape(sellSignal and O4<O2[1] ? up : na, title="Short Entry", location=location.absolute, style=shape.circle, size=size.tiny, color=color.red, transp=0)
    plotshape(sellSignal and showsignals and O4<O2[1] ? up : na, title="Short", text="Short Entry", location=location.absolute, style=shape.labeldown, size=size.tiny, color=color.red, textcolor=color.white, transp=0)

    plotshape(buyExit and O1<O3[1] ? up : na, title="Long Exit", location=location.absolute, style=shape.circle, size=size.tiny, color=color.blue, transp=0)
    plotshape(buyExit and showsignals and O1<O3[1] ? up : na, title="Long Exit", text="Exit Long", location=location.absolute, style=shape.labeldown, size=size.tiny, color=color.blue, textcolor=color.white, transp=0)

    plotshape(sellExit and O2<O4[1] ? down : na, title="Short Exit", location=location.absolute, style=shape.circle, size=size.tiny, color=color.blue, transp=0)
    plotshape(sellExit and showsignals and O2<O4[1] ? down : na, title="Short", text="Exit Short", location=location.absolute, style=shape.labelup, size=size.tiny, color=color.blue, textcolor=color.white, transp=0)

    color1= highlighting and min(O1,O2,O3)==O1 ? color.green : na
    color2= highlighting and min(O1,O2,O4)==O2 ? color.red : na
    fill(u, e, color=color1, transp=88, title="Background")
    fill(l, e, color=color2, transp=88, title="Background")


    bunu ideal a cevýrebýlýrmýyýz

  2.  Alýntý Originally Posted by kaplan06 Yazýyý Oku
    Kaplumbaða Ticareti yazýlýmýný bulamadým yardýmcý olurmusunuz

    20 Günlük Donchian Kanalý yukarý kýrýldýðýnda AL - LONG

    20 Günlük Donchian Kanalý yukarý kýrýldýðýnda SAT - SHORT

    Günlük Periyot

    Vadeli iþlem
    //@version=4
    //author: @kivancozbilgic

    study(title="Turtle Trade Channels Indicator", shorttitle="TuTCI", overlay=true, resolution="")
    length = input(20,"Entry Length", minval=1)
    len2=input(10, "Exit Length", minval=1)
    showsignals = input(title="Show Entry/Exit Signals ?", type=input.bool, defval=true)
    highlighting = input(title="Highlighter On/Off ?", type=input.bool, defval=true)


    lower = lowest(length)
    upper = highest(length)
    u = plot(upper, "Upper", color=#0094FF)
    l = plot(lower, "Lower", color=#0094FF)

    up=highest(high,length)
    down=lowest(low,length)
    sup=highest(high,len2)
    sdown=lowest(low,len2)
    K1=barssince(high>=up[1])<=barssince(low<=down[1]) ? down : up
    K2=iff(barssince(high>=up[1])<=barssince(low<=down[1]),sdown,sup)
    K3=iff(close>K1,down,na)
    K4=iff(close<K1,up,na)
    plot(K1, title="Trend Line", color=color.red, linewidth=3, style=2)
    e=plot(K2, title="Exit Line", color=color.blue, linewidth=1, style=6)


    buySignal=high==upper[1] or crossover(high,upper[1])
    sellSignal = low==lower[1] or crossover(lower[1],low)
    buyExit=low==sdown[1] or crossover(sdown[1],low)
    sellExit = high==sup[1] or crossover(high,sup[1])

    O1= barssince(buySignal)
    O2= barssince(sellSignal)
    O3= barssince(buyExit)
    O4= barssince(sellExit)

    E1= barssince(buySignal[1])
    E2= barssince(sellSignal[1])
    E3= barssince(buyExit[1])
    E4= barssince(sellExit[1])

    plotshape(buySignal and O3<O1[1] ? down : na, title="Long Entry", location=location.absolute, style=shape.circle, size=size.tiny, color=color.green, transp=0)
    plotshape(buySignal and showsignals and O3<O1[1] ? down : na, title="Long", text="Long Entry", location=location.absolute, style=shape.labelup, size=size.tiny, color=color.green, textcolor=color.white, transp=0)

    plotshape(sellSignal and O4<O2[1] ? up : na, title="Short Entry", location=location.absolute, style=shape.circle, size=size.tiny, color=color.red, transp=0)
    plotshape(sellSignal and showsignals and O4<O2[1] ? up : na, title="Short", text="Short Entry", location=location.absolute, style=shape.labeldown, size=size.tiny, color=color.red, textcolor=color.white, transp=0)

    plotshape(buyExit and O1<O3[1] ? up : na, title="Long Exit", location=location.absolute, style=shape.circle, size=size.tiny, color=color.blue, transp=0)
    plotshape(buyExit and showsignals and O1<O3[1] ? up : na, title="Long Exit", text="Exit Long", location=location.absolute, style=shape.labeldown, size=size.tiny, color=color.blue, textcolor=color.white, transp=0)

    plotshape(sellExit and O2<O4[1] ? down : na, title="Short Exit", location=location.absolute, style=shape.circle, size=size.tiny, color=color.blue, transp=0)
    plotshape(sellExit and showsignals and O2<O4[1] ? down : na, title="Short", text="Exit Short", location=location.absolute, style=shape.labelup, size=size.tiny, color=color.blue, textcolor=color.white, transp=0)

    color1= highlighting and min(O1,O2,O3)==O1 ? color.green : na
    color2= highlighting and min(O1,O2,O4)==O2 ? color.red : na
    fill(u, e, color=color1, transp=88, title="Background")
    fill(l, e, color=color2, transp=88, title="Background")



    ÝDEAL ÝÇÝN CEVRÝLEBILIR MI

  3.  Alýntý Originally Posted by kaplan06 Yazýyý Oku
    HAREKETLÝ ORTALAMA KEÞÝÞÝMLERÝ

    - SMA 5 - SMA 22 ortalamayý yukarý keserse AL

    - SMA5- SMA 22 ortalamayý aþaðý keserse SAT

    Kýsa periyod 5 gunluk

    uzun periyod 22 gunluk

    gunluk periyod

    izleyen stop % 2

    bu þekilde formül yazabilirmiyiz tesekkürler
    5/22 HAREKETLÝ ORTALAMA KESÝSÝMLERÝ

    // kapanýþ fiyatlarýný oku
    var Veriler = Sistem.GrafikFiyatSec("Kapanis");

    // hareketli ortalamalarý hesapla
    var MA1 = Sistem.MA(Veriler, "Exp", 5);
    var MA2 = Sistem.MA(Veriler, "Exp", 22);



    // hesaplanan verileri çizgilere aktar ve açýklama ekle
    Sistem.Cizgiler[0].Deger = MA1;
    Sistem.Cizgiler[1].Deger = MA2;

    // strateji
    Sistem.KesismeTara(MA1, MA2);



    BU SEKILDE OLDUMU USTALARIM

  4. yýllardýr mt4 kullanýrým .viopa bu sene geçtim dolayýsýyla bankam yüzünden ideal e de geçtim maalesef!!! (benim için en büyük eksisi anlýk fiyatýn sað tarafýnýn kullanýlamamasýdýr)
    böyle bir þey yaptým saatlik ve üzerinde oldukça verimli kullanýyorum. bir bakýn olmuþ mu?

    // STOCHASTIC hesapla
    var STOCKHASTIC = Sistem.StochasticMomIndex(8,3,5);
    // ortalama hesapla
    var AVR = Sistem.MA(STOCKHASTIC, "Simple", 8);

    // hesaplanan verileri çizgilere aktar ve açýklama ekle
    Sistem.Cizgiler[0].Deger = STOCKHASTIC;
    Sistem.Cizgiler[1].Deger = AVR;

    // hesapla
    var DEMA1 = Sistem.DEMA(8);
    var DEMA2 = Sistem.DEMA(20);
    var DEMA5 = Sistem.DEMA(200);
    var DEMA3 = Sistem.DEMA(50);
    var DEMA4 = Sistem.DEMA(100);

    // hesaplanan verileri çizgilere aktar
    Sistem.Cizgiler[2].Deger = DEMA1;
    Sistem.Cizgiler[3].Deger = DEMA2;
    Sistem.Cizgiler[4].Deger = DEMA3;
    Sistem.Cizgiler[5].Deger = DEMA4;
    Sistem.Cizgiler[6].Deger = DEMA5;

    // sistem strateji
    Sistem.KesismeTara(DEMA1, DEMA2);


    // algo strateji
    if (Sistem.YukariKestiyse(DEMA1, DEMA2)) // alýþ
    Sistem.AlgoIslem = "A";
    if (Sistem.AsagiKestiyse(DEMA1, DEMA2)) // satýþ
    Sistem.AlgoIslem = "S";

    // algo açýklama
    Sistem.AlgoAciklama = "DEMA1=" + DEMA1[Sistem.BarSayisi-1].ToString("0.00") + " " +
    "DEMA2=" + DEMA2[Sistem.BarSayisi-1].ToString("0.00");

    iDeal1.jpg

  5. Orhan Bey'in paylaþtýðý Lib dosyasýnda aþaðýdaki null yazan kýsýmlarýn ne þekilde kullanýldýðýný bilen var mýdýr ? Kendisine sormak isterdim ama buraya pek uðrayacaðýný zannetmem.

    //Performans
    dynamic Performans = Lib.Performans(
    Sistem, Sistem.Parametreler[0],"31.12.2050"
    , 0 /* X Kademe Kayma: 1 girilirse ilgili tarihdeki 1 kademe deðeri puan kadar kayma olur. ondalýk da girilebilir. */
    , 0 /* Ortalama Kayma Puaný: X Kademe Kayma 0 olduðunda bu deðer dikkate alýnýr.Örnek: 0.025 */
    , 0 /* Komisyon Oraný: 1 girilirse 10 Binde 1 hesaplanýr. */
    , 0 /* Ýlk Bakiye */
    , 1 /* Lot */
    , true /* Açýk Ýþlem Var mý? */
    , null /* Sembol: Sistem üzerinden çekilemeyen seneryolar için.*/
    , null /* Veriler: Sistem üzerinden çekilemeyen seneryolar için.*/
    , null /* Yönler: Sistem üzerinden çekilemeyen seneryolar için.*/
    , null /* Seviyeler: Sistem üzerinden çekilemeyen seneryolar için.*/
    );

  6. ÝMDAT

    merhaba arkadaþlar þimdiden iyi bayramlar
    ideal ekibinden bir rica da bulundum fakat PINE dilini bilmediklerini ve yapamayacaklarýný söylediler
    YARDIMCI OLURSANIZ ÇOK SEVÝNÝRÝM
    onlara gönderdiðim maili aynen ekliyorum


    AÞAÐIDA AÇIK KODU OLAN
    TRADINGVIEW DA GÖRDÜÐÜM ÝNDÝKATÖRÜN ÝDEAL VERÝ TERMÝNALÝNDE ÇALIÞAN VERSÝYONUNU GÖNDEREBÝLÝRSENÝZ ÇOK SEVÝNÝRÝM VE AYRICA SON ÜÇ BAR DAN HERHANGÝ BÝRÝNDE AL SÝNYALÝ ÜRETMÝÞ HÝSSELERÝ BULMAK ÝÇÝN TARAMA KODUNU RÝCA EDÝYORUM teþekkürler iyi günler

    ORJÝNAL ÝNDÝKATÖRÜN SAYFASI
    https://tr.tradingview.com/script/am...Estimator-LUX/


    // This work is licensed under a Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0) https://creativecommons.org/licenses/by-nc-sa/4.0/
    // © LuxAlgo
    //@version=4

    study("Nadaraya-Watson Estimator [LUX]",overlay=true,max_lines_count=500,max_bars_back=5 00)
    h = input(8.,'Bandwidth')
    src = input(close,'Source')
    //----
    n = bar_index
    var ln = array.new_line(0)
    if barstate.isfirst
    for i = 0 to 499
    array.push(ln,line.new(na,na,na,na))
    //----
    float y2 = na
    float y1 = na
    float y1_d = na
    //----
    line l = na
    label lb = na
    if barstate.islast
    for i = 0 to min(499,n-1)
    sum = 0.
    sumw = 0.
    for j = 0 to min(499,n-1)
    w = exp(-(pow(i-j,2)/(h*h*2)))
    sum += src[j]*w
    sumw += w
    y2 := sum/sumw
    d = y2 - y1

    l := array.get(ln,i)
    line.set_xy1(l,n-i+1,y1)
    line.set_xy2(l,n-i,y2)
    line.set_color(l,y2 > y1 ? #ff1100 : #39ff14)
    line.set_width(l,2)

    if d > 0 and y1_d < 0
    label.new(n-i+1,src[i],'â–²',color=#00000000,style=label.style_label_up, textcolor=#39ff14,textalign=text.align_center)
    if d < 0 and y1_d > 0
    label.new(n-i+1,src[i],'â–¼',color=#00000000,style=label.style_label_dow n,textcolor=#ff1100,textalign=text.align_center)

    y1 := y2
    y1_d := d


    -------------------------------------------------------------------------------------

    BU ÝNDÝKATÖRÜN ÜSTTEKÝ ÝLE BALANTISI OLABÝLÝR

    https://www.tradingview.com/script/I...-Envelope-LUX/


    // This work is licensed under a Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0) https://creativecommons.org/licenses/by-nc-sa/4.0/
    // © LuxAlgo
    //@version=5

    indicator("Nadaraya-Watson Envelope [LUX]",overlay=true,max_bars_back=1000,max_lines_count= 500,max_labels_count=500)
    length = input.float(500,'Window Size',maxval=500,minval=0)
    h = input.float(8.,'Bandwidth')
    mult = input.float(3.)
    src = input.source(close,'Source')

    up_col = input.color(#39ff14,'Colors',inline='col')
    dn_col = input.color(#ff1100,'',inline='col')
    //----
    n = bar_index
    var k = 2
    var upper = array.new_line(0)
    var lower = array.new_line(0)

    lset(l,x1,y1,x2,y2,col)=>
    line.set_xy1(l,x1,y1)
    line.set_xy2(l,x2,y2)
    line.set_color(l,col)
    line.set_width(l,2)

    if barstate.isfirst
    for i = 0 to length/k-1
    array.push(upper,line.new(na,na,na,na))
    array.push(lower,line.new(na,na,na,na))
    //----
    line up = na
    line dn = na
    //----
    cross_up = 0.
    cross_dn = 0.
    if barstate.islast
    y = array.new_float(0)

    sum_e = 0.
    for i = 0 to length-1
    sum = 0.
    sumw = 0.

    for j = 0 to length-1
    w = math.exp(-(math.pow(i-j,2)/(h*h*2)))
    sum += src[j]*w
    sumw += w

    y2 = sum/sumw
    sum_e += math.abs(src[i] - y2)
    array.push(y,y2)

    mae = sum_e/length*mult

    for i = 1 to length-1
    y2 = array.get(y,i)
    y1 = array.get(y,i-1)

    up := array.get(upper,i/k)
    dn := array.get(lower,i/k)

    lset(up,n-i+1,y1 + mae,n-i,y2 + mae,up_col)
    lset(dn,n-i+1,y1 - mae,n-i,y2 - mae,dn_col)

    if src[i] > y1 + mae and src[i+1] < y1 + mae
    label.new(n-i,src[i],'â–¼',color=#00000000,style=label.style_label_dow n,textcolor=dn_col,textalign=text.align_center)
    if src[i] < y1 - mae and src[i+1] > y1 - mae
    label.new(n-i,src[i],'â–²',color=#00000000,style=label.style_label_up, textcolor=up_col,textalign=text.align_center)

    cross_up := array.get(y,0) + mae
    cross_dn := array.get(y,0) - mae

    alertcondition(ta.crossover(src,cross_up),'Down',' Down')
    alertcondition(ta.crossunder(src,cross_dn),'Up','U p')

  7.  Alýntý Originally Posted by Bear_Bull Yazýyý Oku
    if (V[i].Date.Year >= YIL && V[i].Date.Month >= AY && V[i].Date.Day >= GUN)

    ilave edin

    Ýbrahim abi yardýmýn lazým imdat tradingview dan bir indikatörü ideal ekibine gönderdim ama PINE dilini bilmediklerini söylediler sen veya senin bildiðin biri varmýdýr indikatörü ideal diline çevirebilecek burdan paylaþtým.

  8. Orhan Bey paylaþýmlarýnýz için sonsuz teþekkürler....ziyadesiyle istifade edeceðiz..emeklerinize saðlýk...iþiniz gücünüz rast gelsin...

Sayfa 32/33 ÝlkÝlk ... 2230313233 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
  •