Artan
Azalan
İşlem
BIST 30
BIST 50
BIST 100
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
6,05 10% 1,05 Mr 5,60 / 6,05
15,29 10% 226,34 Mn 13,84 / 15,29
20,70 9.99% 45,18 Mn 19,20 / 20,70
16,41 9.99% 16,44 Mn 16,20 / 16,41
255,50 9.99% 38,93 Mn 225,00 / 255,50
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
41,28 -9.99% 138,00 Mn 41,28 / 43,72
107,50 -9.97% 3,57 Mn 107,50 / 111,30
52,80 -9.97% 6,72 Mr 52,80 / 58,60
2,26 -9.96% 478,11 Mn 2,26 / 2,53
330,50 -9.95% 75,31 Mn 330,50 / 336,50
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
235,00 4.54% 13,33 Mr 229,90 / 239,80
287,00 -0.69% 12,40 Mr 285,00 / 295,25
322,25 -5.22% 11,96 Mr 318,00 / 345,50
37,08 -6.17% 9,33 Mr 37,02 / 39,98
78,90 -4.65% 8,66 Mr 78,05 / 84,00
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
18,55 0.82% 1,01 Mr 18,34 / 19,12
78,90 -4.65% 8,66 Mr 78,05 / 84,00
322,25 -5.22% 11,96 Mr 318,00 / 345,50
175,50 -2.88% 4,94 Mr 174,30 / 183,00
653,00 -3.19% 3,85 Mr 652,50 / 688,00
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
18,55 0.82% 1,01 Mr 18,34 / 19,12
78,90 -4.65% 8,66 Mr 78,05 / 84,00
97,95 -2.73% 551,49 Mn 97,95 / 101,40
109,10 -1.62% 263,97 Mn 108,70 / 113,60
322,25 -5.22% 11,96 Mr 318,00 / 345,50
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
18,55 0.82% 1,01 Mr 18,34 / 19,12
31,32 -3.93% 136,17 Mn 31,32 / 33,04
78,90 -4.65% 8,66 Mr 78,05 / 84,00
9,87 0.3% 202,58 Mn 9,79 / 10,09
65,70 -1.5% 703,52 Mn 65,50 / 68,75
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
  •