Artan
Azalan
İşlem
BIST 30
BIST 50
BIST 100
NASDAQ 100
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
5,83 10% 1,06 Mr 5,49 / 5,83
11,99 10% 336,27 Mn 10,90 / 11,99
124,30 10% 112,66 Mn 116,00 / 124,30
35,42 10% 122,32 Mn 32,38 / 35,42
6,93 10% 401,38 Mn 5,67 / 6,93
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
1.170,00 -10% 101,24 Mn 1.170,00 / 1.290,00
481,50 -10% 434,72 Mn 481,50 / 532,00
43,74 -10% 96,29 Mn 43,74 / 48,36
6,48 -10% 126,65 Mn 6,48 / 7,28
17,10 -10% 1,93 Mr 17,10 / 19,25
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
121,30 -5.53% 24,17 Mr 121,30 / 136,30
3,20 1.27% 16,88 Mr 3,16 / 3,29
425,50 2.65% 16,34 Mr 415,50 / 434,25
264,00 3.63% 10,28 Mr 252,00 / 264,00
314,50 -0.4% 9,53 Mr 313,00 / 317,75
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
18,61 -1.27% 555,50 Mn 18,41 / 19,11
73,70 -2.96% 8,42 Mr 73,65 / 76,90
425,50 2.65% 16,34 Mr 415,50 / 434,25
264,00 3.63% 10,28 Mr 252,00 / 264,00
727,00 -0.41% 2,16 Mr 721,50 / 739,00
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
18,61 -1.27% 555,50 Mn 18,41 / 19,11
73,70 -2.96% 8,42 Mr 73,65 / 76,90
97,15 1.09% 607,34 Mn 95,70 / 98,05
112,30 -2.43% 247,63 Mn 111,80 / 115,70
425,50 2.65% 16,34 Mr 415,50 / 434,25
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
18,61 -1.27% 555,50 Mn 18,41 / 19,11
30,92 2.59% 121,66 Mn 30,22 / 30,98
73,70 -2.96% 8,42 Mr 73,65 / 76,90
10,22 -0.68% 218,42 Mn 10,22 / 10,44
83,15 0.12% 582,64 Mn 82,70 / 85,15

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 1/3 123 SonSon
Arama sonucu : 1185 madde; 1 - 8 arası.

Konu: küçük yatırımcı pörtföyü

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1.  Alıntı Originally Posted by korfez111 Yazıyı Oku
    Sn Oblomov, aylik pivotlara tradingview de hangi gösterge ile bakiyorsunuz?

    SM-G970F cihazımdan Tapatalk kullanılarak gönderildi
    Selamlar.
    MTF(Çoklu zamanlı) ve Traditional/Camarilla seçenekleri ile kendi kodumla.

    Kod şöyle:

    Kod:
    //@version=4study(title="CamarillaTred", shorttitle="CTP", overlay=true)
    //width = input(2, minval=1)
    
    
    //choices = input(title="P", defval="12M", options=["D", "W", "M", "3M", "12M"])
    res = input(title="PPeriod", type=input.resolution, defval="D")
    res1 = input(title="HLPeriod", type=input.resolution, defval="D")
    choice = input(title="Pkind", defval="C", options=["T", "C"])
    c = choice
    
    
    
    
    PP = security(syminfo.tickerid, res, hlc3[1], lookahead=true)
    phigh = security(syminfo.tickerid, res, high[1], lookahead=true)
    plow = security(syminfo.tickerid, res, low[1], lookahead=true)
    pclose = security(syminfo.tickerid, res, close[1], lookahead=true)
    ph = security(syminfo.tickerid, res1, high[1], lookahead=true)
    pl = security(syminfo.tickerid, res1, low[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(ph, color=color.white, title= "High" , linewidth=2)
    p3= plot(pl, 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 )
    https://www.kisavade.com/
    Al,sat,tut,yakala,sık,bırak vb. tavsiye için aracı kurumunuzla görüşün.

  2.  Alıntı Originally Posted by obblomovv Yazıyı Oku
    Selamlar.
    MTF(Çoklu zamanlı) ve Traditional/Camarilla seçenekleri ile kendi kodumla.

    Kod şöyle:

    Kod:
    //@version=4study(title="CamarillaTred", shorttitle="CTP", overlay=true)
    //width = input(2, minval=1)
    
    
    //choices = input(title="P", defval="12M", options=["D", "W", "M", "3M", "12M"])
    res = input(title="PPeriod", type=input.resolution, defval="D")
    res1 = input(title="HLPeriod", type=input.resolution, defval="D")
    choice = input(title="Pkind", defval="C", options=["T", "C"])
    c = choice
    
    
    
    
    PP = security(syminfo.tickerid, res, hlc3[1], lookahead=true)
    phigh = security(syminfo.tickerid, res, high[1], lookahead=true)
    plow = security(syminfo.tickerid, res, low[1], lookahead=true)
    pclose = security(syminfo.tickerid, res, close[1], lookahead=true)
    ph = security(syminfo.tickerid, res1, high[1], lookahead=true)
    pl = security(syminfo.tickerid, res1, low[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(ph, color=color.white, title= "High" , linewidth=2)
    p3= plot(pl, 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 )
    Çok sagolun

    SM-G970F cihazımdan Tapatalk kullanılarak gönderildi

  3. #3
    endeks haftalık grafik band aralığındayız göstergelerden ilki yazdığımız gibi ala döndü.

  4. #4

  5. #5
    yine yazdığımız gibi 5 günlük 21 i kesmeye geldi en önemlisi endeks 21 günlük üzerinde kalma çabasında.

  6. #6
    eğer burada kalırsa önce üst bandı kırmayı deneyecek sonra güçlü ise bosluk doldurmayı deneyecek.

  7. #7
     Alıntı Originally Posted by nilkiz Yazıyı Oku
    eğer burada kalırsa önce üst bandı kırmayı deneyecek sonra güçlü ise bosluk doldurmayı deneyecek.
    6. 5 de yazmışız

  8. #8

Sayfa 1/3 123 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
  •