Artan
Azalan
��lem
BIST 30
BIST 50
BIST 100
NASDAQ 100
Hisse Fiyat Fark% Hacim (TL) D���k / Y�ksek
4,07 10% 355,01 Mn 3,91 / 4,07
9,46 10% 2,03 Mr 9,00 / 9,46
4,40 10% 347,36 Mn 4,20 / 4,40
660,50 9.99% 372,72 Mn 660,50 / 660,50
43,60 9.99% 176,23 Mn 39,70 / 43,60
Hisse Fiyat Fark% Hacim (TL) D���k / Y�ksek
389,75 -9.99% 4,94 Mn 389,75 / 430,00
3,43 -9.97% 1,04 Mr 3,43 / 3,62
44,06 -9.97% 548,15 Mn 44,06 / 45,90
121,20 -9.96% 3,21 Mr 121,20 / 147,80
165,50 -9.96% 1,69 Mr 165,50 / 180,00
Hisse Fiyat Fark% Hacim (TL) D���k / Y�ksek
3,54 0.57% 24,09 Mr 3,52 / 3,69
113,20 9.58% 15,35 Mr 97,70 / 113,20
40,86 -0.97% 14,18 Mr 40,58 / 43,72
75,85 0.8% 10,72 Mr 74,20 / 76,10
308,50 -0.8% 9,92 Mr 306,25 / 309,50
Hisse Fiyat Fark% Hacim (TL) D���k / Y�ksek
21,20 3.62% 1,23 Mr 20,72 / 21,56
75,85 0.8% 10,72 Mr 74,20 / 76,10
431,75 0.76% 9,13 Mr 425,00 / 438,75
339,50 4.14% 8,94 Mr 331,75 / 345,00
774,50 -1.96% 3,49 Mr 771,50 / 792,00
Hisse Fiyat Fark% Hacim (TL) D���k / Y�ksek
21,20 3.62% 1,23 Mr 20,72 / 21,56
75,85 0.8% 10,72 Mr 74,20 / 76,10
100,90 1.77% 616,38 Mn 99,00 / 101,60
116,40 1.93% 273,16 Mn 112,60 / 116,70
431,75 0.76% 9,13 Mr 425,00 / 438,75
Hisse Fiyat Fark% Hacim (TL) D���k / Y�ksek
21,20 3.62% 1,23 Mr 20,72 / 21,56
36,00 2.68% 245,44 Mn 35,10 / 36,34
75,85 0.8% 10,72 Mr 74,20 / 76,10
11,18 -0.18% 514,32 Mn 11,10 / 11,44
88,20 1.73% 812,44 Mn 86,55 / 90,30

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 29/43 ÝlkÝlk ... 19272829303139 ... SonSon
Arama sonucu : 342 madde; 225 - 232 arasý.

Konu: BINHO 1000 Yatýrýmlar Holding

  1. bugünkü mumu eðer ki en tepede yapsa benim için "sat" demek olurdu. Düzeltme aþamasýnda bu mumu normal kabul ediyorum.
    Piyasa deðeri 1 milyar $ civarýnda satýcý buluyor genelde.
    Endeks çok bozmazsa 700-600 aralýðýnda konsolide olmaya devam edecek gibi

  2. PHP Code:
     // This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
    // © paaax

    //@version=5
    indicator('[PX] MTF Overview'overlay true)

    // { Functions
    f_getPosition(_pos) =>
        
    ret position.bottom_center
        
    if _pos == 'Top Center'
            
    ret := position.top_center
            ret
        
    if _pos == 'Top Right'
            
    ret := position.top_right
            ret
        
    if _pos == 'Middle Left'
            
    ret := position.middle_left
            ret
        
    if _pos == 'Middle Center'
            
    ret := position.middle_center
            ret
        
    if _pos == 'Middle Right'
            
    ret := position.middle_right
            ret
        
    if _pos == 'Bottom Left'
            
    ret := position.bottom_left
            ret
        
    if _pos == 'Bottom Center'
            
    ret := position.bottom_center
            ret
        
    if _pos == 'Bottom Right'
            
    ret := position.bottom_right
            ret
        ret

    f_normalize
    (_src_min_max) =>  //@PineCoders
        
    var _historicMin 10e10
        
    var _historicMax = -10e10
        _historicMin 
    := math.min(nz(_src_historicMin), _historicMin)
        
    _historicMax := math.max(nz(_src_historicMax), _historicMax)
        
    _min + (_max _min) * (_src _historicMin) / math.max(_historicMax _historicMin10e-10)

    f_security(_sym_res_src_rep) =>  //@PineCoders
        
    request.security(_sym_res_src[not _rep and barstate.isrealtime 0])[_rep or barstate.isrealtime 1]
    //} Functions

    // { Inputs
    bool i_repaint input.bool(false'Repaint'group='MTF')
    string i_timeframe1 input.timeframe('60''Timeframe 1'group='MTF')
    string i_timeframe2 input.timeframe('15''Timeframe 2'group='MTF')
    string i_timeframe3 input.timeframe('5''Timeframe 3'group='MTF')
    string i_pos input.string(defval='Bottom Center'title='Table Position'options=['Top Left''Top Center''Top Right''Middle Left''Middle Center''Middle Right''Bottom Left''Bottom Center''Bottom Right'], group='Layout')
    color i_col input.color(defval=color.whitetitle='Label Color'group='Layout')
    int i_rsiLen input.int(14'RSI Length'group='Momentum')
    int i_atrLen input.int(14'ATR Length'group='Volatility')
    float i_start input.float(0'PSAR'group='Trend'inline='1')
    float i_increment input.float(0.01''group='Trend'inline='1')
    float i_maximum input.float(0.1''group='Trend'inline='1')
    // } Inputs

    // { Calculations
    rsi ta.rsi(closei_rsiLen)
    natr f_normalize(ta.atr(i_atrLen), 0100)
    out ta.sar(i_starti_incrementi_maximum)
    // } Calculations

    rsi1 f_security(syminfo.tickeridi_timeframe1rsii_repaint)
    prevRsi1 f_security(syminfo.tickeridi_timeframe1rsi[1], i_repaint)
    rsi2 f_security(syminfo.tickeridi_timeframe2rsii_repaint)
    prevRsi2 f_security(syminfo.tickeridi_timeframe2rsi[1], i_repaint)
    rsi3 f_security(syminfo.tickeridi_timeframe3rsii_repaint)
    prevRsi3 f_security(syminfo.tickeridi_timeframe3rsi[1], i_repaint)

    atr1 f_security(syminfo.tickeridi_timeframe1natri_repaint)
    prevAtr1 f_security(syminfo.tickeridi_timeframe1natr[1], i_repaint)
    atr2 f_security(syminfo.tickeridi_timeframe2natri_repaint)
    prevAtr2 f_security(syminfo.tickeridi_timeframe2natr[1], i_repaint)
    atr3 f_security(syminfo.tickeridi_timeframe3natri_repaint)
    prevAtr3 f_security(syminfo.tickeridi_timeframe3natr[1], i_repaint)

    trend1 f_security(syminfo.tickeridi_timeframe1outi_repaint)
    prevTrend1 f_security(syminfo.tickeridi_timeframe1out[1], i_repaint)
    trend2 f_security(syminfo.tickeridi_timeframe2outi_repaint)
    prevTrend2 f_security(syminfo.tickeridi_timeframe2out[1], i_repaint)
    trend3 f_security(syminfo.tickeridi_timeframe3outi_repaint)
    prevTrend3 f_security(syminfo.tickeridi_timeframe3out[1], i_repaint)
    //} MTF

    // { Table
    var overview table.new(position=f_getPosition(i_pos), columns=4rows=6bgcolor=color.new(color.black100), border_width=1)

    if 
    barstate.islast
        
    // Labels
        
    table.cell(overview10i_timeframe1text_color=color.new(i_col0))
        
    table.cell(overview20i_timeframe2text_color=color.new(i_col0))
        
    table.cell(overview30i_timeframe3text_color=color.new(i_col0))

        
        
    // Momentum
        
    table.cell(overview02'Momentum'text_color=color.new(i_col0))
        
    table.cell(overview12str.format('{0,number,#.##}'rsi1), text_color=rsi1 prevRsi1 color.new(color.lime0) : color.new(color.red0))
        
    table.cell(overview22str.format('{0,number,#.##}'rsi2), text_color=rsi2 prevRsi2 color.new(color.lime0) : color.new(color.red0))
        
    table.cell(overview32str.format('{0,number,#.##}'rsi3), text_color=rsi3 prevRsi3 color.new(color.lime0) : color.new(color.red0))

        
    // Volatility
        
    table.cell(overview03'Volatility'text_color=color.new(i_col0))
        
    table.cell(overview13str.format('{0,number,#.##}'atr1) + '%'text_color=atr1 prevAtr1 color.new(color.lime0) : color.new(color.red0))
        
    table.cell(overview23str.format('{0,number,#.##}'atr2) + '%'text_color=atr2 prevAtr2 color.new(color.lime0) : color.new(color.red0))
        
    table.cell(overview33str.format('{0,number,#.##}'atr3) + '%'text_color=atr3 prevAtr3 color.new(color.lime0) : color.new(color.red0))

        
    // Trend
        
    table.cell(overview04'Trend'text_color=color.new(i_col0))
        
    table.cell(overview14trend1 prevTrend1 'AL' 'SAT'text_color=trend1 prevTrend1 color.new(color.lime0) : color.new(color.red0))
        
    table.cell(overview24trend2 prevTrend2 'AL' 'SAT'text_color=trend2 prevTrend2 color.new(color.lime0) : color.new(color.red0))
        
    table.cell(overview34trend3 prevTrend3 'AL' 'SAT'text_color=trend3 prevTrend3 color.new(color.lime0) : color.new(color.red0))
    //} Table 

    PHP Code:
     // This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
    // © chervolino
    // Dynamic Reactor [CHE] indicator displays dynamic support and resistance levels.
    // Green lines represent resistance, red lines represent support, and gray lines represent areas of consolidation.
    // The length of the indicator can be adjusted with the lengthMA input.
    //@version=5
    indicator("Dynamic Reactor [CHE]"shorttitle="DR [CHE]"overlay=true)

    //Inputs
    lengthMA input(5'Length DR'inline='Inp'group='Input')
    color green input(#00e677f6, inline='Col', group='Color')
    color red input(#ff5252, inline='Col', group='Color')
    color gray =input(#787b8600, inline='Col', group='Color')

    // Function
    dyn_rea(srclen) =>
        var 
    smma 0.0
        h 
    ta.sma(srclen)
        
    smma := na(smma[1]) ? : (smma[1] * (len 1) + src) / len
        smma

    // Calculation
    hi=dyn_rea(highlengthMA)
    lo=dyn_rea(lowlengthMA)
    mi=(hi-lo)/2+lo

    // Plots
    a=plot(hi,""hlc3>hi?green:hlc3<lo?red:gray)
    b=plot(lo,""hlc3>hi?green:hlc3<lo?red:gray)
    c=plot(mi,""hlc3>hi?green:hlc3<lo?red:gray)
    fill(a,b,hlc3>hi?color.new(green,60):hlc3<lo?color.new(red,60):color.gray
    16.07.2024 - 10.12.2024

  3. PHP Code:
     // This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
    // © AussieBogan

    //@version=5
    indicator('Dynamic Take Profit & Signal Provider'shorttitle='DTSP'overlay=truemax_bars_back=4000)
    //**************************************************************************************//
    //******************************Moving Average Strategy********************************//
    timer input(title='ATR Period'defval=14)
    source input(hl2'Source')
    MTP input.float(title='ATR Multiplier'step=0.1defval=7.0)
    sf input.float(0.8'Sensitivity [0,1]'minval=0maxval=1)
    changeATR input(title='Changing ATR method?'defval=false)
    showsignals input(title='Reveal Long/Short Signals ?'defval=true)

    avg 0.
    srca 
    sf source + (sf) * nz(avg[1], source)
    atrsecond ta.sma(ta.trtimer)
    atr changeATR ta.atr(timer) : atrsecond
    upa 
    srca MTP atr
    up1a 
    nz(upa[1], upa)
    upa := close[1] > up1a math.max(upaup1a) : upa
    dna 
    srca MTP atr
    dn1a 
    nz(dna[1], dna)
    dna := close[1] < dn1a math.min(dnadn1a) : dna
    avg 
    := math.avg(upadna)

    trenda 1
    trenda 
    := nz(trenda[1], trenda)
    trenda := trenda == -and close dn1a trenda == and close up1a ? -trenda


    LongSignal 
    trenda == and trenda[1] == -1
    ShortSignal 
    trenda == -and trenda[1] == 1

    //***********************************************************************************************************************//
    //*****************************************ATR STOP and Swing HIgh and Swing Low TP********************************************************************//

    //Mode
    src input(title='Source'defval=close)
    atrLen input.int(title='ATR'defval=21minval=1maxval=100)
    m1 input.float(title='ATR Multiplier - ADX Rising'defval=3minval=1step=0.1maxval=100)
    m2 input.float(title='ATR Multiplier - ADX Falling'defval=3minval=1step=0.1maxval=100)

    adxLen input.int(title='ADX'defval=14minval=1maxval=100)

    // DI-Pos, DI-Neg, ADX

    hR high nz(high[1])
    lR nz(low[1]) - low

    dmPos 
    hR lR math.abs(hR) : 0
    dmNeg 
    lR hR math.abs(lR) : 0
    var float sTR na
    sTR 
    := nz(sTR[1]) - nz(sTR[1]) / adxLen ta.tr
    var float sDMPos na
    sDMPos 
    := nz(sDMPos[1]) - nz(sDMPos[1]) / adxLen dmPos
    var float sDMNeg na
    sDMNeg 
    := nz(sDMNeg[1]) - nz(sDMNeg[1]) / adxLen dmNeg

    DIP 
    sDMPos sTR 100
    DIN 
    sDMNeg sTR 100
    DX 
    math.abs(DIP DIN) / (DIP DIN) * 100
    adx 
    ta.sma(DXadxLen)

    // Trailing ATR
    var float m na
    := ta.rising(adx1) ? m1 ta.falling(adx1) ? m2 nz(m[1])
    up hl2 ta.atr(atrLen)
    dn hl2 ta.atr(atrLen)

    var 
    float TUp na
    TUp 
    := src[1] > TUp[1] ? math.max(upTUp[1]) : up
    var float TDown na
    TDown 
    := src[1] < TDown[1] ? math.min(dnTDown[1]) : dn

    var float trend na
    trend 
    := src TDown[1] ? src TUp[1] ? -nz(trend[1], 1)
    stop trend == TUp TDown
    trendChange 
    ta.change(trend)

    // Plot

    lineColor not trendChange trend #00FF00DD : #FF0000DD : #00000000
    shapeColor trendChange trendChange #00FF00F8 : #FF0000F8 : #00000000

    plot(stopcolor=lineColorstyle=plot.style_linelinewidth=1title='ATR Trend')



    barsback input(90title='Bars back to check for a swing')

    swing_detection(index) =>
        var 
    float swing_high na
        
    var float swing_low na
        start 
    index 1  // -1 so we have an even number of
        
    swing_point_high high[index]
        
    swing_point_low low[index]

        
    //Swing Highs
        
    for 0 to start by 1
            
    // swing_high := true
            
    if index
                
    if high[i] > swing_point_high
                    swing_high 
    := high[i]
                    break
            
    // Have to do checks before pivot and after seperately because we can get
            // two highs of the same value in a row. Notice the > and >= difference
            
    if index
                
    if high[i] >= swing_point_high
                    swing_high 
    := high[i]
                    break

        
    //Swing lows
        
    for 0 to start by 1
            
    // swing_low := true
            
    if index
                
    if low[i] < swing_point_low
                    swing_low 
    := low[i]
                    break
            
    // Have to do checks before pivot and after seperately because we can get
            // two lows of the same value in a row. Notice the > and >= difference
            
    if index
                
    if low[i] <= swing_point_low
                    swing_low 
    := low[i]
                    break

        [
    swing_highswing_low]

    // Check for a swing
    [sw_hsw_l] = swing_detection(barsback)


    new_bar(res) =>
        
    ta.change(time(res)) != 0
    adr
    (length) =>
        
    range_1 high low
        ta
    .sma(range_1[1], length)
    adr_high(adr) =>
        
    high low adr low adr close >= open low adr high
    adr_low
    (adr) =>
        
    high low adr high adr close >= open low high adr


    plotshape
    (LongSignal and showsignals up natitle='BUY'style=shape.arrowuplocation=location.belowbarsize=size.autotext='Buy'color=color.new(color.green0))
    plotshape(ShortSignal and showsignals dn natitle='SELL'style=shape.arrowdownlocation=location.abovebarsize=size.autotext='Sell'color=color.new(color.red0))

    os 0.
    tp 
    0.
    os 
    := LongSignal ShortSignal os[1]
    tp := ta.change(os) == sw_h ta.change(os) == -sw_l tp[1]
    css os == #0cb51a : #2157f3
    plot(tpcolor=ta.change(os) ? na fixnan(css))
    tpl input(50'Tp Length')
    tpm input(2.'Tp Multiplicative Factor')

    valong ta.valuewhen(LongSignalclose0)
    valshort ta.valuewhen(ShortSignalclose0)
    dev ta.stdev(closetpl) * tpm
    up2 
    valong dev 2
    up1 
    valong dev
    dn1 
    valong dev
    dn2 
    valong dev 2

    plotshape
    (os == up1 dn1title='TP 1'style=shape.circlelocation=location.absolutesize=size.autotext='TP 1'textcolor=csscolor=fixnan(css), show_last=1offset=14transp=0)

    plotshape(os == up2 dn2title='TP 2'style=shape.circlelocation=location.absolutesize=size.autotext='TP 2'textcolor=csscolor=fixnan(css), show_last=1offset=14transp=0)

    plotshape(os == na valongtitle='Long'style=shape.circlelocation=location.absolutesize=size.autotext='Long Position'textcolor=color.new(#0cb51a, 0), color=color.new(#0cb51a, 0), show_last=1, offset=14)

    plotshape(os == na valshorttitle='Short'style=shape.circlelocation=location.absolutesize=size.autotext='Short Position'textcolor=color.new(#ff1100, 0), color=color.new(#ff1100, 0), show_last=1, offset=14) 
    16.07.2024 - 10.12.2024

  4. Dünkü iþlemden ne aldýk. DENIZ FINANS BANKOF sagcep sol cep aradan geleni kaynat evine gönder.Dedim dün düzeltme bitti psikolojiye oynuyorlar eninde sonunda gideceksin dostum.
    .

  5. #229
     Alýntý Originally Posted by kahramanbey Yazýyý Oku
    Dünkü iþlemden ne aldýk. DENIZ FINANS BANKOF sagcep sol cep aradan geleni kaynat evine gönder.Dedim dün düzeltme bitti psikolojiye oynuyorlar eninde sonunda gideceksin dostum.
    .
    Aynen,hedefler yüksek,,scoterler ekmek peynir gibi satýlýyorlar.
    YORUMLAR TAVSÝYE NÝTELÝÐÝ TAÞIMAYIP YATIRIM DANIÞMANLIÐI KAPSAMINDA DEÐÝLDÝR. YATIRIMCI PROFÝLÝNÝZE UYMAYABÝLÝR.

  6. borsanýn böyle düþtüðü bir günde düþmesi normal ama ben hala 2 þeyi anlamýyorum dün BOFA +160k alýmdayken 570 ortalama ile -40k satým ile kapattý günü tavana oturtmaya çalýþtý ama olmayýnca sattý sanýrým. bir diðer þey ise bu hissede benim gördüðüm tacirler, qnb, deniz ve oyak yatýrým üzerinden (benim düþüncem bunlarýn hepsi ayný ekip) bir þeyler çeviriyorlar ve hisse fiyatýný onlar belirliyor. Bugün deniz yatýrým 50k lot 619 ile almýþ görünüyor ama yarýn bence bunlarýn hepsini daha ucuzdan satacak gibi. tabi bunlar tahmin sonuçta bilemem

  7. Þirketin somut bir þeyler açýklamasý lazým, örneðin yüksek meblaðlý yeni bir iþ, yatýrým vs. Ýþtiraklerde sermaye arttýrdýlar ama bunlarýn iþ anlamýnda dönüþünü görmek lazým. Yeni bilançoyu da görmek lazým, bakalým karlýlýk þu anki seviyede devam edecek mi. Portföyümün çoðu burada, dolayýsýyla bugünkü düþüþ oldukça can sýkýcý oldu ancak binho bunu telafi edebilecek güçte diye düþünüyorum


Sayfa 29/43 ÝlkÝlk ... 19272829303139 ... 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
  •