Sayfa 305/310 İlkİlk ... 205255295303304305306307 ... SonSon
Arama sonucu : 2473 madde; 2,433 - 2,440 arası.

Konu: Tradingview

  1. https://spk.gov.tr/spk-bultenleri/20...spk-bultenleri

    21 ağustos...

    Ortaklık Mevcut Sermaye Yeni Sermaye Bedelli Sermaye Artırımı Bedelsiz Sermaye Artırımı Satış Türü İç Kaynaklardan Kâr Payından Gentaş Dekoratif Yüzeyler Sanayi ve Ticaret AŞ 300.000.000 750.000.000 - 450.000.000 - -
    Türker Proje Gayrimenkul ve Yatırım Geliştirme AŞ 7.120.695,86 128.172.525,48 42.724.175,16 78.327.654,46 - Halka Arz
    1000 Yatırımlar Holding AŞ 47.000.000 1.290.150.000 - 1.243.150.000 - -
    Naturel Yenilenebilir Enerji Ticaret AŞ 165.000.000 825.000.000 - 660.000.000 -

  2. endeks tl https://www.tradingview.com/x/Rizxo6B6/

    endeks usd https://www.tradingview.com/x/lbpHkvdi/

    endeks.... bugün yeni zirve tazeledi.....

    elbette x100 de zirve tazeleyecek olanlar var....

    ama usd grafik için....

    kchol gibi....zirveden düşenler...eski zirvesini test etse.... yeter derler...

    bugünkü 186 hareketi...193 hedef yaptı gibi...

    saatlik ise... takip... https://www.tradingview.com/x/x9IAshNL/





  3. PHP Code:
    //@version=6
    indicator(title 'Sniper Machine'shorttitle 'Sniper Machine'overlay true,  max_boxes_count=50)


    // UI Options for Auto Trend Detection and No Signal in Sideways Market
    autoTrendDetection input.bool(truetitle 'Auto Trend Detection')
    noSignalSideways input.bool(truetitle 'No Signal in Sideways Market')


    // Color variables
    upTrendColor color.white
    neutralColor 
    #90bff9
    downTrendColor color.blue


    // Source
    source input(defval closetitle 'Source')


    // Sampling Period - Replaced with Sniper Machine
    period input.int(defval 100minval 1title 'Sniper Machine Period')


    // Trend Master - Replaced with Sniper Machine
    multiplier input.float(defval 3.0minval 0.1title 'Sniper Machine Multiplier')


    // Smooth Average Range
    smoothRange(xtm) =>
        
    adjustedPeriod 1
        avgRange 
    ta.ema(math.abs(x[1]), t)
        
    smoothRange ta.ema(avgRangeadjustedPeriod) * m
        smoothRange
    smoothedRange 
    smoothRange(sourceperiodmultiplier)


    // Trend Filter
    trendFilter(xr) =>
        
    filtered x
        filtered 
    := nz(filtered[1]) ? nz(filtered[1]) ? nz(filtered[1]) : nz(filtered[1]) ? nz(filtered[1]) : r
        filtered
    filter 
    trendFilter(sourcesmoothedRange)


    // Filter Direction
    upCount 0.0
    upCount 
    := filter filter[1] ? nz(upCount[1]) + filter filter[1] ? nz(upCount[1])
    downCount 0.0
    downCount 
    := filter filter[1] ? nz(downCount[1]) + filter filter[1] ? nz(downCount[1])


    // Colors
    filterColor upCount upTrendColor downCount downTrendColor neutralColor


    // Buy/Sell Signals - Adapted from Clear Trend Logic
    trendUp upCount // Equivalent to REMA_up in Clear Trend
    newBuySignal trendUp and not trendUp[1] and barstate.isconfirmed
    newSellSignal 
    not trendUp and trendUp[1] and barstate.isconfirmed


    initialCondition 
    0
    initialCondition 
    := newBuySignal newSellSignal ? -initialCondition[1]
    longSignal newBuySignal and initialCondition[1] == -1
    shortSignal 
    newSellSignal and initialCondition[1] == 1


    // Alerts and Signals
    plotshape(longSignaltitle 'Buy Signal'text '🚀'textcolor #000000, style = shape.labelup, size = size.small, location = location.belowbar, color = #fae10400) // Bright yellow for Buy
    plotshape(shortSignaltitle 'Sell Signal'text '🚨'textcolor #000000, style = shape.labeldown, size = size.small, location = location.abovebar, color = #fb020200) // Bright red for Sell


    alertcondition(longSignaltitle 'Buy alert on Sniper Machine'message 'Buy alert on Sniper Machine')
    alertcondition(shortSignaltitle 'Sell alert on Sniper Machine'message 'Sell alert on Sniper Machine')
    ///////////////

    // Inputs
    src     input.source(hlc3"Source")
    emaLen  input.int(1"Center EMA")
    spreadN input.int(100"Spread Length")
    kMult   input.float(3.0"Multiplier"step=0.1)

    upCol   input.color(color.rgb(25155), "Up Color")
    dnCol   input.color(color.rgb(26,221,127), "Down Color")

    // Core calculation
    mid    ta.ema(srcemaLen)
    spread ta.sma(high lowspreadN)
    uBand  mid kMult spread
    lBand  
    mid kMult spread

    // Crawl bands
    var float upC na
    var float dnC na
    upC 
    := na(upC[1]) ? uBand : (src[1] > upC[1] ? uBand math.min(uBandupC[1]))
    dnC := na(dnC[1]) ? lBand : (src[1] < dnC[1] ? lBand math.max(lBanddnC[1]))

    // Direction & guide
    var int dir na
    var float guide na
    if na(dir[1])
        
    dir := 1
    else
        
    dir := guide[1] == upC[1] ? (src upC ? -1) : (src dnC : -1)
    guide := dir == upC dnC

    // Background zone fill
    bgcolor(dir==color.new(upCol85) : color.new(dnCol85), title="Trend Zone")

    // Guide line
    plot(guide"Trs"color=color.new(dir==1?upCol:dnCol0), linewidth=1)

    // Signals
    trendUpbn    not na(dir[1]) and dir == -and dir[1] != -1
    trendDownbn  
    not na(dir[1]) and dir == 1  and dir[1] != 1
    pbUp       
    dir==-and high >= upC
    pbDown     
    dir==1  and low <= dnC

    dist 
    0.25 spread 
    filteredPbUp   
    pbUp   and (high upC <= dist)
    filteredPbDown pbDown and (dnC low <= dist)

    firstPbUp   filteredPbUp   and not filteredPbUp[1]
    firstPbDown filteredPbDown and not filteredPbDown[1]

    // ATR for vertical spacing of signals
    atrVal ta.atr(14)
    upY   low 15 atrVal
    downY 
    high 10 atrVal

    // Plot BUY/SELL arrows as labels for vertical spacing
    //if trendUpbn
        //label.new(bar_index, upY, text="BUY", style=label.style_triangleup, color=dnCol, textcolor=color.white, size=size.small, yloc=yloc.price)

    //if trendDownbn
        //label.new(bar_index, downY, text="SELL", style=label.style_triangledown, color=upCol, textcolor=color.white, size=size.small, yloc=yloc.price)

    // Pullback dots
    //plotshape(firstPbUp,   style=shape.circle, location=location.belowbar, color=color.new(dnCol,0), size=size.small)
    //plotshape(firstPbDown, style=shape.circle, location=location.abovebar, color=color.new(upCol,0), size=size.small)
    ////////////////////// 

  4. PHP Code:
    // This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License https://creativecommons.org/licenses/by-sa/4.0/
    // © alexgrover

    //@version=6
    indicator('Minimum Variance SMA''MVSMA'overlay true)
    min input(10)
    max input(50)
    src input(close)
    penalty input.float(.5minval 0maxval 1step .1)
    //------------------------------------------------------------------------------
    os 0.
    0.
    bsma 
    0.
    a1 
    ta.cum(src)
    a2 ta.cum(src src)
    for 
    min to max by 1
        ma 
    = (a1 a1[i]) / i
        p 
    math.pow(ipenalty)
        
    dev = ((a2 a2[i]) / math.pow(ma2)) / p
        m 
    := == min dev math.min(devm)
        
    bsma := == dev ma bsma
        bsma
        
    //------------------------------------------------------------------------------
    plot(bsma'Plot'color.new(#ff1100, 0), 2) 

Sayfa 305/310 İlkİlk ... 205255295303304305306307 ... 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
  •