Artan
Azalan
İşlem
BIST 30
BIST 50
BIST 100
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
104,50 10% 557.089,50? 104,50 / 104,50
110,00 10% 60.830,00? 110,00 / 110,00
35,42 10% 75,29 Mn 35,42 / 35,42
281,00 9.98% 20,40 Mn 256,25 / 281,00
43,20 9.98% 2,37 Mr 39,48 / 43,20
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
230,90 -8.1% 1,05 Mr 226,20 / 250,75
100,60 -6.42% 1,44 Mn 100,60 / 100,60
26,00 -5.11% 273.312,00? 26,00 / 26,00
610,50 -3.71% 130,53 Mn 598,00 / 622,00
39,98 -3.66% 42,85 Mn 38,74 / 42,50
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
328,75 2.02% 2,90 Mr 321,75 / 331,75
43,20 9.98% 2,37 Mr 39,48 / 43,20
230,20 -2.04% 2,30 Mr 228,30 / 236,60
285,00 -0.7% 1,92 Mr 282,00 / 288,75
78,95 0.06% 1,50 Mr 77,70 / 79,45
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
18,56 0.05% 86,53 Mn 18,35 / 18,69
78,95 0.06% 1,50 Mr 77,70 / 79,45
328,75 2.02% 2,90 Mr 321,75 / 331,75
177,50 1.14% 685,16 Mn 175,70 / 178,10
645,00 -1.23% 444,81 Mn 638,50 / 655,50
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
18,56 0.05% 86,53 Mn 18,35 / 18,69
78,95 0.06% 1,50 Mr 77,70 / 79,45
99,80 1.89% 80,44 Mn 98,10 / 99,90
108,80 -0.27% 27,00 Mn 107,90 / 109,40
328,75 2.02% 2,90 Mr 321,75 / 331,75
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
18,56 0.05% 86,53 Mn 18,35 / 18,69
31,16 -0.51% 39,84 Mn 30,68 / 31,70
78,95 0.06% 1,50 Mr 77,70 / 79,45
9,86 -0.1% 18,34 Mn 9,80 / 9,92
66,40 1.07% 67,26 Mn 65,50 / 66,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
  •