Sayfa 29/31 İlkİlk ... 192728293031 SonSon
Arama sonucu : 245 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
    Teknik olarak; yarına gebe olan bugünü yaşamalı ki, yarın, yaşanmış olsun.

  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) 
    Teknik olarak; yarına gebe olan bugünü yaşamalı ki, yarın, yaşanmış olsun.

  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

  8. Teknik olarak; yarına gebe olan bugünü yaşamalı ki, yarın, yaşanmış olsun.

Sayfa 29/31 İlkİlk ... 192728293031 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
  •