Sayfa 216/278 İlkİlk ... 116166206214215216217218226266 ... SonSon
Arama sonucu : 2218 madde; 1,721 - 1,728 arası.

Konu: Bitcoin & Ethereum

  1. #1721
     Alıntı Originally Posted by KPL Yazıyı Oku
    Bence ... 104+- görürüz gibi artık, orası satışlı olabilir.
    ...
    104 dertleri devam (bendeki tam değer 104.270)
    ama almaya çalışıyoruz gibi, tabi kesin bilmek imkansız

  2.  Alıntı Originally Posted by KPL Yazıyı Oku
    104 dertleri devam (bendeki tam değer 104.270)
    ama almaya çalışıyoruz gibi, tabi kesin bilmek imkansız
    https://www.tradingview.com/x/bwEbVRh2/ 15lik sat üretmiş ama 103450 alda
    https://www.tradingview.com/x/xlFqiSWc/ saatlik 103450 de al ama sat üretmiş
    https://www.tradingview.com/x/J8H9NYKQ/ 4 saatlik sat üretmiş

    103450 takipli short kovalma olabilir.....
    ama https://www.tradingview.com/x/vkRJBY91/ 5likler....104265 kırılımını hesaba kat diyor.....
    16.07.2024 - 10.12.2024

  3. #1723
    Fakat altlar perişan olmuş, nasıl yorumlasam bilemedim 🧐 vaa mı fikri olan, ben pek anlamaz alt sezonu filan, btc’ciyik 🙂

  4. yeni moda....yapay zekaya grafik analiz ettirmek...
    https://www.youtube.com/watch?v=LeUiv5d3GaI

    https://cryptopotato.com/language/tr...asirtan-cevap/
    coin karşıtıda yapay zeka kullanıyor...

    eğer....herkes yapay zekaya sararsa....
    coinde....yapay zekaya karşı savaşmak için yapay zeka kullanma paradoksu ile uğraşılacak gibi....
    16.07.2024 - 10.12.2024

  5. https://tr.euronews.com/next/2024/10...pi-destekliyor

    soru...trampet, desteklidiği için mi seçti ya da desteklendiği için mi?

    cevap...win...win....desek...

    tarmpet wini belli.....
    ya elonun wini ne.....

    ve bu winin içinde btc rolü ne olacak....
    16.07.2024 - 10.12.2024

  6. vortex.....

    PHP Code:
    //@version=6
    // Copyright (c) 2020-present, Alex Orekhov (everget)
    // Vortex Bands script may be freely distributed under the terms of the GPL-3.0 license.
    indicator('Vortex Bands'shorttitle 'VB'overlay truemax_bars_back=5000)

    length input(title 'Length'defval 20)
    mult input.float(title 'Multiplier'step 0.1defval 2)
    src input(title 'Source'defval hlc3)
    barColoringType input.string(title 'Bar Coloring'defval 'None'options = ['None''Upper > Lower''Close Above/Below Basis''Close Inside Cloud''Wicks Inside Cloud'])

    _ema(srcalpha) =>
        
    out src
        out 
    := alpha out + (alpha) * nz(out[1], out)
        
    out

    _mnma
    (srclength) =>
        
    alpha / (length 1)
        
    ema1 _ema(srcalpha)
        
    ema2 _ema(ema1alpha)
        
    out = ((alpha) * ema1 ema2) / (alpha)
        
    out

    basis 
    _mnma(srclength)
    dev mult _mnma(src basislength)

    upper basis dev
    lower 
    basis dev

    plot
    (basistitle 'Basis'color color.new(color.maroon0))
    upperBandPlot plot(uppertitle 'Upper'linewidth 2color color.new(color.blue0))
    lowerBandPlot plot(lowertitle 'Lower'linewidth 2color color.new(color.orange0))
    fill(upperBandPlotlowerBandPlottitle 'Background'color color.new(#ffd966, 90))

    barColor barColoringType == 'Upper > Lower' upper lower color.lime color.red barColoringType == 'Close Above/Below Basis' close basis color.lime color.red barColoringType == 'Close Inside Cloud' math.min(upperlower) < close and close math.max(upperlower) ? color.lime color.red barColoringType == 'Wicks Inside Cloud' math.min(upperlower) < low and high math.max(upperlower) ? color.lime color.red na

    //barcolor(barColor, title = 'Bar Color')
    //@version=6

    i_showAtr input.bool(truetitle 'Show ATR Bands'group 'general band settings'inline '11')
    i_src input.source(close'Source'group 'general band settings'inline '11')
    i_repaints input.bool(truetitle 'Repaints?'group 'general band settings'inline '12')
    i_showLabels input.bool(true'Show labels'group 'general band settings'inline '12')
    i_extendLines input.bool(true'Extend lines'group 'general band settings'inline '12')
    i_lineThickness input.int(2'Line thickness'minval 1group 'general band settings'inline '13')
    i_lineStyle input.string(line.style_dotted'Line style'options = [line.style_dottedline.style_solidline.style_dashed], group 'general band settings'inline '13')

    i_fixedTargets input.bool(truetitle 'Fixed targets')
    i_trackingSlLength input.int(2title 'Trailing Stop loss length'minval 0)

    i_firstMult input.float(1.5title 'First atr band mult.'group 'first band settings')
    i_firstAtrLength input.int(14title 'First atr band length'group 'first band settings')
    i_firstColor input.color(color.bluetitle 'First color'group 'first band settings')

    i_secondMult input.float(3.0title 'Second band mult.'group 'second band settings')
    i_secondAtrLength input.int(14title 'Second atr band length'group 'second band settings')
    i_secondColor input.color(color.orangetitle 'Second color'group 'second band settings')

    i_viPeriod input.int(14title 'Length'minval 2group 'vortex indicator settings')
    i_applyTema input.bool(falsetitle 'Apply TEMA smoothing'group 'vortex indicator settings')

    arraySize i_fixedTargets 2
    index 
    i_repaints 1

    var lineArray = array.new_line()
    var 
    labelArray = array.new_label()

    f_tema(_source_lenght) =>
        
    ema01 ta.ema(_source_lenght)
        
    ema02 ta.ema(ema01_lenght)
        
    ema03 ta.ema(ema02_lenght)
        
    output * (ema01 ema02) + ema03
        output

    f_drawLine
    (_x1_x2_yValue_lineColor_lineThickness_lineStyle) =>
        
    line.new(x1 _x1y1 _yValuex2 _x2y2 _yValuecolor _lineColorstyle _lineStylewidth _lineThickness)

    f_drawLabel(_x_y_textColor) =>
        
    label.new(_x_y'         ' str.tostring(_y), xloc.bar_indexyloc.price#00000000, label.style_none, _textColor)

    f_extendArray(_lineArray_labelArray_extendLines) =>
        if array.
    size(_lineArray) > 0
            
    for _i = array.size(_lineArray) - 1 to 0 by 1
                lineId 
    = array.get(_lineArray_i)
                
    x2 line.get_x2(lineId)
                
    x1 line.get_x1(lineId)
                
    yValue line.get_y1(lineId)

                if 
    _extendLines or bar_index == x2 and not(high yValue and low yValue)
                    if 
    i_showLabels
                        label
    .set_x(array.get(_labelArray_i), bar_index)
                    
    line.set_x2(lineIdbar_index)



    f_drawLineAndLabel(_x1_x2_yValue_colorLine_lineThickness_lineStyle_array_labelArray) =>
        
    line l f_drawLine(_x1_x2_yValue_colorLine_lineThickness_lineStyle)

        if 
    i_showLabels
            label lab 
    f_drawLabel(_x2math.round(_yValue2), _colorLine)
            if array.
    size(_labelArray) == arraySize
                label
    .delete(array.shift(_labelArray))

            array.
    push(_labelArraylab)

        if array.
    size(_array) == arraySize
            line
    .delete(array.shift(_array))

        array.
    push(_arrayl)


    // Vortex indicator
    vmp math.sum(math.abs(high low[1]), i_viPeriod)
    vmm math.sum(math.abs(low high[1]), i_viPeriod)
    str math.sum(ta.atr(1), i_viPeriod)
    vip i_applyTema f_tema(vmp stri_viPeriod) : vmp str
    vim 
    i_applyTema f_tema(vmm stri_viPeriod) : vmm str

    viShort 
    ta.crossunder(vipvim)
    viLong ta.crossover(vipvim)
    longBarSince ta.barssince(viLong)
    shortBarSince ta.barssince(viShort)
    viLongBarsSince longBarSince == longBarSince index
    viShortBarsSince 
    shortBarSince == shortBarSince index

    // ATR bands
    firstAtr ta.atr(i_firstAtrLength)
    secondAtr ta.atr(i_secondAtrLength)
    firstUpBand i_src firstAtr i_firstMult
    firstDownBand 
    i_src firstAtr i_firstMult
    secondUpBand 
    i_src secondAtr i_secondMult
    secondDownBand 
    i_src secondAtr i_secondMult

    // Stop loss tracking
    isLong viLongBarsSince viShortBarsSince
    yValueTracking 
    isLong firstUpBand firstDownBand
    viBarsSince 
    isLong viShortBarsSince viLongBarsSince


    // ATR plots
    plot(i_showAtr firstUpBand na'First ATR Top'linewidth 1color color.new(i_firstColor55))
    plot(i_showAtr firstDownBand na'First ATR Bottom'linewidth 1color color.new(i_firstColor55))
    plot(i_showAtr secondUpBand na'Second ATR Top'linewidth 1color color.new(i_secondColor55))
    plot(i_showAtr secondDownBand na'Second ATR Bottom'linewidth 1color color.new(i_secondColor55))


    // Entry plots
    plotshape(viLong[index], title 'VI long'text 'Long'textcolor color.whitestyle shape.labeluplocation location.belowbarcolor color.greensize size.tiny)
    plotshape(viShort[index], title 'VI short'text 'Short'textcolor color.whitestyle shape.labeldownlocation location.abovebarcolor color.redsize size.tiny)


    // Exit plots
    line firstExit na
    label firstExitLabel 
    na
    line secondExit 
    na
    line stopLossLine 
    na

    if viShort[index]
        
    alert('VI short'alert.freq_once_per_bar_close)
        
    f_drawLineAndLabel(bar_indexbar_indexfirstDownBandi_firstColori_lineThicknessi_lineStylelineArraylabelArray)
        if 
    i_fixedTargets
            f_drawLineAndLabel
    (bar_indexbar_indexsecondDownBandi_secondColori_lineThicknessi_lineStylelineArraylabelArray)
        
    f_drawLineAndLabel(bar_indexbar_indexfirstUpBandcolor.redi_lineThicknessi_lineStylelineArraylabelArray)

    if 
    viLong[index]
        
    alert('VI long'alert.freq_once_per_bar_close)
        
    f_drawLineAndLabel(bar_indexbar_indexfirstUpBandi_firstColori_lineThicknessi_lineStylelineArraylabelArray)
        if 
    i_fixedTargets
            f_drawLineAndLabel
    (bar_indexbar_indexsecondUpBandi_secondColori_lineThicknessi_lineStylelineArraylabelArray)
        
    f_drawLineAndLabel(bar_indexbar_indexfirstDownBandcolor.redi_lineThicknessi_lineStylelineArraylabelArray)

    f_extendArray(lineArraylabelArrayi_extendLines)

    if 
    not i_fixedTargets and array.size(lineArray) > 0
        slLabelId 
    = array.get(labelArray, array.size(labelArray) - 1)
        
    slLineId = array.get(lineArray, array.size(lineArray) - 1)
        for 
    _i viBarsSince to 0 by 1
            float slValue 
    _i viBarsSince i_trackingSlLength yValueTracking[i_trackingSlLength] : yValueTracking[viBarsSince]
            if 
    not(high[_i] > slValue and low[_i] < slValue)
                
    line.set_y1(slLineIdslValue)
                
    line.set_y2(slLineIdslValue)
                
    line.set_x1(slLineIdbar_index[i_trackingSlLength])
                
    label.set_y(slLabelIdslValue)
                
    label.set_text(slLabelId'         ' str.tostring(math.round(slValue2))) 
    örnek
    https://www.tradingview.com/x/uaGUJ4Qu/
    https://www.tradingview.com/x/cmgWyVj8/
    https://www.tradingview.com/x/4NExRBlz/
    https://www.tradingview.com/x/YaigKsHK/
    https://www.tradingview.com/x/Q3c9YgQg/
    16.07.2024 - 10.12.2024

  7. 16.07.2024 - 10.12.2024

  8. 16.07.2024 - 10.12.2024

Sayfa 216/278 İlkİlk ... 116166206214215216217218226266 ... 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
  •