Artan
Azalan
İşlem
BIST 30
BIST 50
BIST 100
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
35,42 10% 81,07 Mn 35,42 / 35,42
104,50 10% 557.089,50? 104,50 / 104,50
110,00 10% 60.830,00? 110,00 / 110,00
43,20 9.98% 2,50 Mr 39,48 / 43,20
281,00 9.98% 21,17 Mn 256,25 / 281,00
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
226,90 -9.69% 1,55 Mr 226,20 / 250,75
301,75 -8.7% 165,32 Mn 299,25 / 329,75
4,08 -6.64% 236,70 Mn 3,95 / 4,58
100,60 -6.42% 1,44 Mn 100,60 / 100,60
246,90 -5.4% 460,20 Mn 245,00 / 269,00
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
328,00 1.78% 4,69 Mr 321,75 / 331,75
230,10 -2.09% 3,76 Mr 228,30 / 236,60
285,25 -0.61% 3,58 Mr 282,00 / 288,75
14,85 0.13% 3,20 Mr 14,67 / 15,10
78,15 -0.95% 3,12 Mr 77,70 / 79,65
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
18,79 1.29% 225,26 Mn 18,35 / 18,98
78,15 -0.95% 3,12 Mr 77,70 / 79,65
328,00 1.78% 4,69 Mr 321,75 / 331,75
176,80 0.74% 1,61 Mr 175,70 / 180,40
650,50 -0.38% 1,29 Mr 638,50 / 660,50
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
18,79 1.29% 225,26 Mn 18,35 / 18,98
78,15 -0.95% 3,12 Mr 77,70 / 79,65
99,45 1.53% 165,89 Mn 98,10 / 100,30
109,60 0.46% 73,97 Mn 107,90 / 110,30
328,00 1.78% 4,69 Mr 321,75 / 331,75
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
18,79 1.29% 225,26 Mn 18,35 / 18,98
31,38 0.19% 65,81 Mn 30,68 / 31,70
78,15 -0.95% 3,12 Mr 77,70 / 79,65
9,85 -0.2% 45,89 Mn 9,80 / 9,94
66,30 0.91% 181,08 Mn 65,50 / 67,65
Sayfa 200/380 İlkİlk ... 100150190198199200201202210250300 ... SonSon
Arama sonucu : 3038 madde; 1,593 - 1,600 arası.

Konu: Tradingview

  1. bar renklendirme...strateji koy...
    çizgileri gizle...
    sonuç....
    https://www.tradingview.com/x/LGi3k2Yb/
    https://www.tradingview.com/x/Anxd6mdK/
    16.07.2024 - 10.12.2024


  2. deneme kodu....
    istediğiniz değişikliği yapın...
    kendinize göre ayarlayın....

    PHP Code:
      //@version=5
    strategy(title='Moonhub Cycle Index'shorttitle='deneme'overlay=true)

    // Input parameters
    len_DIema input.int(5minval=1title='COEMA Length')
    len_DIsma input.int(20minval=1title='COSMA Length')
    start1 input(0)
    increment1 input(0.1)
    maximum1 input(1"Max Value")
    out1 ta.sar(start1increment1maximum1)
    start2 input(0)
    increment2 input(0.01)
    maximum2 input(0.1"Max Value")
    out2 ta.sar(start2increment2maximum2)
    start3 input(0.1)
    increment3 input(0.1)
    maximum3 input(0.1"Max Value")
    out3 ta.sar(start3increment3maximum3)
    // Create a custom index
    index = (out1 out2 out3) / 3

    // Calculate COEMA and COSMA for the Custom Index
    DI_index_Co_E ta.ema(indexlen_DIema)
    DI_Co_indexS ta.sma(indexlen_DIsma)

    // Plot the index
    plot(indextitle='Index'color=color.new(#ff5252, 100), linewidth=2)
    plot(DI_index_Co_Etitle='5EMA'color=color.new(#2195f3, 100), linewidth=2)
    plot(DI_Co_indexStitle='20SMA'color=color.new(#4caf4f, 100), linewidth=2)

    changebarcol input.bool(truetitle='Change Bar Color'inline='bcol')
    bcolup input.color(color.rgb(10324376), title=''inline='bcol')
    bcoldn input.color(color.rgb(2487878), title=''inline='bcol')

    var 
    color lastBarColor na
    BullishColor 
    input.color(color.rgb(12524777))
    BearishColor input.color(color.rgb(2457676))
    barColorBasedOnDEMATrend close out1 and close out2 and close out3    BullishColor close out1 and close out2 and close out3  BearishColor nz(lastBarColor[1])
    lastBarColor := barColorBasedOnDEMATrend
    barcolor
    (color=changebarcol barColorBasedOnDEMATrend na)

    xa ta.crossover(close,out1) and  ta.crossover(close,out2) and  ta.crossover(close,out3)
    ys ta.crossunder(close,out1) and ta.crossunder(close,out2) and ta.crossunder(close,out3)
    in_b ta.barssince(xa)[1] < ta.barssince(ys)[1]
    in_s ta.barssince(ys)[1] < ta.barssince(xa)[1]

    if 
    xa
        strategy
    .entry("Long",strategy.long)
    if 
    ys
        strategy
    .close("Long")
    /////////////////////////////////////////////////// 
    16.07.2024 - 10.12.2024


  3. https://tr.tradingview.com/v/SsiX8yk4/

    trend çizmek için.....
    15-240 ve günlük....
    görüntü....https://www.tradingview.com/x/pxxh29lE/
    16.07.2024 - 10.12.2024



  4. 16.07.2024 - 10.12.2024

Sayfa 200/380 İlkİlk ... 100150190198199200201202210250300 ... 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
  •