Bitcoin Fiyatı Yükleniyor...
Ethereum Fiyatı Yükleniyor...
Scroll to Top
kripto eğitim teknik analiz temel analiz eğitimi bitcoin

TABLE BTC ETH BTC.D USDT.D TOTAL2 TOTAL3 AND SUPERTREND

Anahtar Kelimeler: tradingview indikatör kodları bitcoin analiz kripto teknik analiz

//@version=5
indicator(“TABLO ETH BTC.D USDT.D TOTAL2 TOTAL3″, overlay = true)

// Kullanıcıdan zaman dilimi seçimi al
timeframe_label = input.timeframe(defval=”15″, title=”Zaman Dilimi Seçin”,
tooltip=”1: 1 dakika, 5: 5 dakika, 15: 15 dakika, 60: 1 saat, 240: 4 saat, D: Günlük”)

// DEĞERLERİ ALMA
btc_price = request.security(“BINANCE:BTCUSDT”, timeframe_label, close)
eth_price = request.security(“BINANCE:ETHUSDT”, timeframe_label, close)
btc_dominasyon = request.security(“BTC.D”, timeframe_label, close)
usdt_dominasyon = request.security(“USDT.D”, timeframe_label, close)
total_2 = request.security(“TOTAL2”, timeframe_label, close)
total_3 = request.security(“TOTAL3”, timeframe_label, close)

// SUPERTREND İLE TREND YÖNÜ ALMA
atrPeriod = input.int(10, “ATR Length”, minval = 1)
factor = input.float(3.0, “Factor”, minval = 0.01, step = 0.01)

[btc_supertrend, btc_direction] = request.security(“BINANCE:BTCUSDT”, timeframe_label, ta.supertrend(factor, atrPeriod), barmerge.gaps_off, barmerge.lookahead_on)
[eth_supertrend, eth_direction] = request.security(“BINANCE:ETHUSDT”, timeframe_label, ta.supertrend(factor, atrPeriod), barmerge.gaps_off, barmerge.lookahead_on)
[btc_dominasyon_supertrend, btc_dominasyon_direction] = request.security(“BTC.D”, timeframe_label, ta.supertrend(factor, atrPeriod), barmerge.gaps_off, barmerge.lookahead_on)
[usdt_dominasyon_supertrend, usdt_dominasyon_direction] = request.security(“USDT.D”, timeframe_label, ta.supertrend(factor, atrPeriod), barmerge.gaps_off, barmerge.lookahead_on)
[total_2_supertrend, total_2_direction] = request.security(“TOTAL2”, timeframe_label, ta.supertrend(factor, atrPeriod), barmerge.gaps_off, barmerge.lookahead_on)
[total_3_supertrend, total_3_direction] = request.security(“TOTAL3”, timeframe_label, ta.supertrend(factor, atrPeriod), barmerge.gaps_off, barmerge.lookahead_on)

// Tablo oluştur
var table toplu = table.new(position = position.top_right, columns = 10, rows = 10, bgcolor = color.gray, border_width = 3, border_color = color.aqua, frame_color = color.white, frame_width = 2)

// Tabloda gösterilecek değerleri yazdır
table.cell(toplu, 0, 0, “BTCUSDT”, text_color = color.black, text_size = size.normal)
table.cell(toplu, 0, 1, str.tostring(btc_price), text_color = color.black, text_size = size.normal)
table.cell(toplu, 1, 0, “BTC.D”, text_color = color.black, text_size = size.normal)
table.cell(toplu, 1, 1, str.tostring(btc_dominasyon), text_color = color.black, text_size = size.normal)
table.cell(toplu, 2, 0, “ETH/USDT”, text_color = color.black, text_size = size.normal)
table.cell(toplu, 2, 1, str.tostring(eth_price), text_color = color.black, text_size = size.normal)
table.cell(toplu, 3, 0, “USDT.D”, text_color = color.black, text_size = size.normal)
table.cell(toplu, 3, 1, str.tostring(usdt_dominasyon), text_color = color.black, text_size = size.normal)
table.cell(toplu, 4, 0, “TOTAL2”, text_color = color.black, text_size = size.normal)
table.cell(toplu, 4, 1, str.tostring(total_2), text_color = color.black, text_size = size.normal)
table.cell(toplu, 5, 0, “TOTAL3”, text_color = color.black, text_size = size.normal)
table.cell(toplu, 5, 1, str.tostring(total_3), text_color = color.black, text_size = size.normal)

// Supertrend yönünü tabloya yazdır
table.cell(toplu, 0, 2, btc_direction < 0 ? “YÜKSELİŞ TRENDİ” : “DÜŞÜŞ TRENDİ”, text_color = btc_direction < 0 ? color.green : color.red)
table.cell(toplu, 1, 2, btc_dominasyon_direction < 0 ? “YÜKSELİŞ TRENDİ” : “DÜŞÜŞ TRENDİ”, text_color = btc_dominasyon_direction < 0 ? color.green : color.red)
table.cell(toplu, 2, 2, eth_direction < 0 ? “YÜKSELİŞ TRENDİ” : “DÜŞÜŞ TRENDİ”, text_color = eth_direction < 0 ? color.green : color.red)
table.cell(toplu, 3, 2, usdt_dominasyon_direction < 0 ? “YÜKSELİŞ TRENDİ” : “DÜŞÜŞ TRENDİ”, text_color = usdt_dominasyon_direction < 0 ? color.green : color.red)
table.cell(toplu, 4, 2, total_2_direction < 0 ? “YÜKSELİŞ TRENDİ” : “DÜŞÜŞ TRENDİ”, text_color = total_2_direction < 0 ? color.green : color.red)
table.cell(toplu, 5, 2, total_3_direction < 0 ? “YÜKSELİŞ TRENDİ” : “DÜŞÜŞ TRENDİ”, text_color = total_3_direction < 0 ? color.green : color.red)

Yorum bırakın

E-posta adresiniz yayınlanmayacak. Gerekli alanlar * ile işaretlenmişlerdir

Scroll to Top