Artan
Azalan
İşlem
BIST 30
BIST 50
BIST 100
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
0,53 12.77% 51,50 Mn 0,46 / 0,60
26,62 10% 3,21 Mn 26,62 / 26,62
83,05 10% 30,67 Mn 79,55 / 83,05
25,98 9.99% 30,90 Mn 23,10 / 25,98
36,14 9.98% 65,07 Mn 36,14 / 36,14
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
648,00 -10% 1,67 Mr 648,00 / 692,00
14,60 -9.99% 5,77 Mr 14,60 / 16,47
27,76 -9.99% 2,77 Mr 27,76 / 29,70
407,75 -9.99% 114,49 Mn 407,75 / 456,00
310,00 -9.95% 179,45 Mn 310,00 / 310,00
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
322,00 3.54% 23,44 Mr 307,50 / 324,75
307,50 -1.28% 18,75 Mr 303,50 / 314,00
16,91 -1.69% 11,86 Mr 16,58 / 17,53
90,15 -1.69% 10,46 Mr 89,15 / 93,50
188,00 1.62% 8,93 Mr 183,80 / 192,00
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
18,95 -2.32% 1,54 Mr 18,62 / 19,59
90,15 -1.69% 10,46 Mr 89,15 / 93,50
322,00 3.54% 23,44 Mr 307,50 / 324,75
188,00 1.62% 8,93 Mr 183,80 / 192,00
667,50 -1.48% 5,87 Mr 653,00 / 683,00
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
18,95 -2.32% 1,54 Mr 18,62 / 19,59
90,15 -1.69% 10,46 Mr 89,15 / 93,50
102,40 -2.29% 1,02 Mr 101,70 / 105,80
115,20 -2.87% 453,60 Mn 114,50 / 119,90
322,00 3.54% 23,44 Mr 307,50 / 324,75
Hisse Fiyat Fark% Hacim (TL) Düşük / Yüksek
18,95 -2.32% 1,54 Mr 18,62 / 19,59
33,78 0.24% 83,65 Mn 32,82 / 33,98
90,15 -1.69% 10,46 Mr 89,15 / 93,50
10,18 -1.64% 206,22 Mn 10,07 / 10,48
67,15 -3.73% 1,36 Mr 66,05 / 72,25
Sayfa 200/378 İlkİlk ... 100150190198199200201202210250300 ... SonSon
Arama sonucu : 3024 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/378 İ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
  •