Artan
Azalan
İşlem
BIST 30
BIST 50
BIST 100
NASDAQ 100
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
5,61 10% 299,97 Mn 5,03 / 5,61
49,50 10% 10,57 Mn 49,50 / 49,50
12,65 10% 173,70 Mn 11,44 / 12,65
1.210,00 10% 221,62 Mn 1.040,00 / 1.210,00
33,10 9.97% 84,81 Mn 29,20 / 33,10
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
15,80 -9.97% 519,37 Mn 15,80 / 16,50
132,90 -9.96% 16,12 Mn 132,90 / 132,90
1.751,00 -5.86% 529,63 Mn 1.704,00 / 1.812,00
13,58 -5.37% 439,58 Mn 12,92 / 13,99
5,71 -5.31% 223,94 Mn 5,57 / 6,40
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
62,85 1.05% 10,16 Mr 60,65 / 64,30
280,00 2.19% 8,06 Mr 271,50 / 283,75
341,75 8.92% 8,01 Mr 313,25 / 342,75
32,46 1.06% 7,97 Mr 30,42 / 32,78
396,50 4.96% 6,10 Mr 370,50 / 399,00
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
18,84 1.4% 493,99 Mn 17,98 / 19,07
62,85 1.05% 10,16 Mr 60,65 / 64,30
396,50 4.96% 6,10 Mr 370,50 / 399,00
341,75 8.92% 8,01 Mr 313,25 / 342,75
382,75 1.66% 2,43 Mr 372,00 / 386,00
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
18,84 1.4% 493,99 Mn 17,98 / 19,07
62,85 1.05% 10,16 Mr 60,65 / 64,30
93,55 3.14% 341,30 Mn 88,00 / 93,85
102,80 0.78% 247,97 Mn 100,40 / 103,50
396,50 4.96% 6,10 Mr 370,50 / 399,00
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
18,84 1.4% 493,99 Mn 17,98 / 19,07
33,32 3.41% 74,85 Mn 31,92 / 33,70
62,85 1.05% 10,16 Mr 60,65 / 64,30
10,32 1.18% 245,06 Mn 9,99 / 10,50
76,85 4.56% 379,74 Mn 70,05 / 77,50

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
Arama sonucu : 118 madde; 1 - 8 arası.

Konu: Tradingview veri terminalinde İndikatör/Strateji/Sistem

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. Şuradan başlayarak:

    Yeni başlayanlar için Teknik Analiz. - Page 27 (hisse.net)

    Pro versiyonu kullanmayanlar için 3 indikatörle sınırlı ekranda, atıyorum:

    1-Hisse ekranında(atıyorum SISE), vadelinin(SISE1!),
    2-Vadeli ekranında(SISE1!), endeksin(XU030),
    3-XU030 a bakarken XU100' ün,
    4-Coin bakarken(atıyorum ADAUSDT), coin vadelinin(ADAUSDTPERP),
    5-Coin vadeli(ADAUSDTPERP) bakarken, BTC(BTCUSDT)' nin

    aynı anda grafik ve Camarilla veya Traditional(Geleneksel) Pivotlarını görebileceğimiz bir gösterge paylaşmıştım.

    Önce onu buraya da taşıyalım:





    Kod:
    
    //@version=4
    study(title="base", overlay=false)
    
    
    
    
    
    
    
    
    symbolToGet = input(title="Hisse/Coin/Vb.", type=input.string, defval="XVGUSD")
    res = input(title="P.Periyod", type=input.resolution, defval="W")
    choice = input(title="P.Türü(Geleneksel/Camarilla)", defval="C", options=["T", "C"])
    c = choice
    
    
    
    
    InstrData(data) =>
        tick = tickerid(syminfo.prefix, symbolToGet)
        security(tick, timeframe.period, data)
    
    
    
    
    
    
    
    
    plotcandle(open=InstrData(open), high=InstrData(high), low=InstrData(low), close=InstrData(close), color=InstrData(close) < InstrData(open) ? color.red : color.green)
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    PP = security(tickerid(syminfo.prefix, symbolToGet), res, hlc3[1], lookahead=true)
    phigh = security(tickerid(syminfo.prefix, symbolToGet), res, high[1], lookahead=true)
    plow = security(tickerid(syminfo.prefix, symbolToGet), res, low[1], lookahead=true)
    pclose = security(tickerid(syminfo.prefix, symbolToGet), res, close[1], lookahead=true)
    
    
    
    
    tr1 = PP * 2 - plow
    ts1 = PP * 2 - phigh
    tr2 = PP + (phigh - plow)
    ts2 = PP - (phigh - plow)
    tr3 = PP * 2 + (phigh - 2 * plow)
    ts3 = PP * 2 - (2 * phigh - plow)
    tr4 = PP * 3 + (phigh - 3 * plow)
    ts4 = PP * 3 - (3 * phigh - plow)
    tr5 = PP * 4 + (phigh - 4 * plow)
    ts5 = PP * 4 - (4 * phigh - plow)
    
    
    
    
    cr4 = (0.55*(phigh-plow)) + pclose
    cr3 = (0.275*(phigh-plow)) + pclose
    cr2 = (0.183*(phigh-plow)) + pclose
    cr1 = (0.0916*(phigh-plow)) + pclose
    cs1 = pclose -(0.0916*(phigh-plow))
    cs2 = pclose -(0.183*(phigh-plow))
    cs3 = pclose -(0.275*(phigh-plow))
    cs4 = pclose -(0.55*(phigh-plow))
    
    
    
    
    
    
    
    
    r1 = if c == "T"
        tr1
    else if c == "C"
        cr1
    r2 = if c == "T"
        tr2
    else if c == "C"
        cr2
    r3 = if c == "T"
        tr3
    else if c == "C"
        cr3
    r4 = if c == "T"
        tr4
    else if c == "C"
        cr4
    r5 = if c == "T"
        tr5
    s1 = if c == "T"
        ts1
    else if c == "C"
        cs1
    s2 = if c == "T"
        ts2
    else if c == "C"
        cs2
    s3 = if c == "T"
        ts3
    else if c == "C"
        cs3
    s4 = if c == "T"
        ts4
    else if c == "C"
        cs4
    s5 = if c == "T"
        ts5
        
        
    plot(r5, color=#7fff00, title= "R5" , linewidth=1 )    
    plot(r4, color=#458b00, title= "R4" , linewidth=1 )
    plot(r3, color=#caff70, title= "R3" , linewidth=1 )    
    plot(r2, color=#8b8b00 , title= "R2" , linewidth=1 )
    plot(r1, color=#008080, title= "R1" , linewidth=1 )
    p1= plot(PP, color=color.yellow, title= "PP" , linewidth=2 )
    p2= plot(phigh, color=color.white, title= "High" , linewidth=2)
    p3= plot(pclose, color=#ee7ae9, title= "Close" , linewidth=2)
    p4= plot(plow, color=#97ffff, title= "Low" , linewidth=2)
    plot(s1, color=#dda0dd, title= "S1" , linewidth=1 )
    plot(s2, color=#ff6a6a, title= "S2" , linewidth=1 )
    plot(s3, color=#ff3030, title= "S3" , linewidth=1 )    
    plot(s4, color=#c71585, title= "S4" , linewidth=1 )
    plot(s5, color=#8b0000, title= "S5" , linewidth=1 )
    Son düzenleme : obblomovv; 22-05-2021 saat: 19:38.
    https://www.kisavade.com/
    Al,sat,tut,yakala,sık,bırak vb. tavsiye için aracı kurumunuzla görüşün.

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
  •