Bitcoin Fiyatı Yükleniyor...
Ethereum Fiyatı Yükleniyor...
Scroll to Top
Hızlı Rsi İndikatör Tarama Teknik Analiz Bitcoin Altcoin Analizi

Hızlı Rsi Tarama İndikatörü | Teknik Analiz

Hızlı Rsi Tarama İndikatörü | Teknik Analiz
Alt kısmı kopyalayıp PineScript Paneline Yapıştırabilirsiniz, Nasıl Yapılacağını Öğrenmek İçin Buraya Tıklayarak Videoyu İzleyebilirsiniz!

indicator("RSI Sinyal Tarayıcı (Tablo)", overlay=true)

selectedCoin = input.string("BTCUSDT", title="Coin Seçin", options=["BTCUSDT", "ETHUSDT", "SOLUSDT", "ADAUSDT", "XRPUSDT", "AVAXUSDT", "PEPEUSDT", "FLOKIUSDT", "BONKUSDT", "NEARUSDT", "BOMEUSDT", "WOOUSDT", "MEMEUSDT", "HMSTRUSDT", "DUSKUSDT", "XLMUSDT", "WIFUSDT"])

timeframe = input.timeframe("60", title="Zaman Dilimi Seçin")

rsi1 = request.security("BTCUSDT", timeframe, ta.rsi(close, 14))

rsi2 = request.security("ETHUSDT", timeframe, ta.rsi(close, 14))

rsi3 = request.security("SOLUSDT", timeframe, ta.rsi(close, 14))

rsi4 = request.security("ADAUSDT", timeframe, ta.rsi(close, 14))

rsi5 = request.security("XRPUSDT", timeframe, ta.rsi(close, 14))

rsi6 = request.security("AVAXUSDT", timeframe, ta.rsi(close, 14))

rsi7 = request.security("PEPEUSDT", timeframe, ta.rsi(close, 14))

rsi8 = request.security("FLOKIUSDT", timeframe, ta.rsi(close, 14))

rsi9 = request.security("BONKUSDT", timeframe, ta.rsi(close, 14))

rsi10 = request.security("NEARUSDT", timeframe, ta.rsi(close, 14))

rsi11 = request.security("BOMEUSDT", timeframe, ta.rsi(close, 14))

rsi12 = request.security("WOOUSDT", timeframe, ta.rsi(close, 14))

rsi13 = request.security("MEMEUSDT", timeframe, ta.rsi(close, 14))

rsi14 = request.security("HMSTRUSDT", timeframe, ta.rsi(close, 14))

rsi15 = request.security("DUSKUSDT", timeframe, ta.rsi(close, 14))

rsi16 = request.security("XLMUSDT", timeframe, ta.rsi(close, 14))

rsi17 = request.security("WIFUSDT", timeframe, ta.rsi(close, 14))

var table rsiTable = table.new(position.top_right, 2, 2)

if bar_index == 0

    table.cell(rsiTable, 0, 0, "Coin", text_color=color.white, bgcolor=color.blue)

    table.cell(rsiTable, 1, 0, "Sinyal", text_color=color.white, bgcolor=color.blue)

if selectedCoin == "BTCUSDT" and not na(rsi1)

    signal1 = rsi1 > 70 ? "SELL" : rsi1 < 30 ? "BUY" : "Normal"

    table.cell(rsiTable, 0, 1, "BTCUSDT", text_color=color.white, bgcolor=color.blue)

    table.cell(rsiTable, 1, 1, signal1, text_color=signal1 == "SELL" ? color.red : (signal1 == "BUY" ? color.green : color.gray))

if selectedCoin == "ETHUSDT" and not na(rsi2)

    signal2 = rsi2 > 70 ? "SELL" : rsi2 < 30 ? "BUY" : "Normal"

    table.cell(rsiTable, 0, 1, "ETHUSDT", text_color=color.white, bgcolor=color.blue)

    table.cell(rsiTable, 1, 1, signal2, text_color=signal2 == "SELL" ? color.red : (signal2 == "BUY" ? color.green : color.gray))

if selectedCoin == "SOLUSDT" and not na(rsi3)

    signal3 = rsi3 > 70 ? "SELL" : rsi3 < 30 ? "BUY" : "Normal"

    table.cell(rsiTable, 0, 1, "SOLUSDT", text_color=color.white, bgcolor=color.blue)

    table.cell(rsiTable, 1, 1, signal3, text_color=signal3 == "SELL" ? color.red : (signal3 == "BUY" ? color.green : color.gray))

if selectedCoin == "ADAUSDT" and not na(rsi4)

    signal4 = rsi4 > 70 ? "SELL" : rsi4 < 30 ? "BUY" : "Normal"

    table.cell(rsiTable, 0, 1, "ADAUSDT", text_color=color.white, bgcolor=color.blue)

    table.cell(rsiTable, 1, 1, signal4, text_color=signal4 == "SELL" ? color.red : (signal4 == "BUY" ? color.green : color.gray))

if selectedCoin == "XRPUSDT" and not na(rsi5)

    signal5 = rsi5 > 70 ? "SELL" : rsi5 < 30 ? "BUY" : "Normal"

    table.cell(rsiTable, 0, 1, "XRPUSDT", text_color=color.white, bgcolor=color.blue)

    table.cell(rsiTable, 1, 1, signal5, text_color=signal5 == "SELL" ? color.red : (signal5 == "BUY" ? color.green : color.gray))

if selectedCoin == "AVAXUSDT" and not na(rsi6)

    signal6 = rsi6 > 70 ? "SELL" : rsi6 < 30 ? "BUY" : "Normal"

    table.cell(rsiTable, 0, 1, "AVAXUSDT", text_color=color.white, bgcolor=color.blue)

    table.cell(rsiTable, 1, 1, signal6, text_color=signal6 == "SELL" ? color.red : (signal6 == "BUY" ? color.green : color.gray))

if selectedCoin == "PEPEUSDT" and not na(rsi7)

    signal7 = rsi7 > 70 ? "SELL" : rsi7 < 30 ? "BUY" : "Normal"

    table.cell(rsiTable, 0, 1, "PEPEUSDT", text_color=color.white, bgcolor=color.blue)

    table.cell(rsiTable, 1, 1, signal7, text_color=signal7 == "SELL" ? color.red : (signal7 == "BUY" ? color.green : color.gray))

if selectedCoin == "FLOKIUSDT" and not na(rsi8)

    signal8 = rsi8 > 70 ? "SELL" : rsi8 < 30 ? "BUY" : "Normal"

    table.cell(rsiTable, 0, 1, "FLOKIUSDT", text_color=color.white, bgcolor=color.blue)

    table.cell(rsiTable, 1, 1, signal8, text_color=signal8 == "SELL" ? color.red : (signal8 == "BUY" ? color.green : color.gray))

if selectedCoin == "BONKUSDT" and not na(rsi9)

    signal9 = rsi9 > 70 ? "SELL" : rsi9 < 30 ? "BUY" : "Normal"

    table.cell(rsiTable, 0, 1, "BONKUSDT", text_color=color.white, bgcolor=color.blue)

    table.cell(rsiTable, 1, 1, signal9, text_color=signal9 == "SELL" ? color.red : (signal9 == "BUY" ? color.green : color.gray))

if selectedCoin == "NEARUSDT" and not na(rsi10)

    signal10 = rsi10 > 70 ? "SELL" : rsi10 < 30 ? "BUY" : "Normal"

    table.cell(rsiTable, 0, 1, "NEARUSDT", text_color=color.white, bgcolor=color.blue)

    table.cell(rsiTable, 1, 1, signal10, text_color=signal10 == "SELL" ? color.red : (signal10 == "BUY" ? color.green : color.gray))

if selectedCoin == "BOMEUSDT" and not na(rsi11)

    signal11 = rsi11 > 70 ? "SELL" : rsi11 < 30 ? "BUY" : "Normal"

    table.cell(rsiTable, 0, 1, "BOMEUSDT", text_color=color.white, bgcolor=color.blue)

    table.cell(rsiTable, 1, 1, signal11, text_color=signal11 == "SELL" ? color.red : (signal11 == "BUY" ? color.green : color.gray))

if selectedCoin == "WOOUSDT" and not na(rsi12)

    signal12 = rsi12 > 70 ? "SELL" : rsi12 < 30 ? "BUY" : "Normal"

    table.cell(rsiTable, 0, 1, "WOOUSDT", text_color=color.white, bgcolor=color.blue)

    table.cell(rsiTable, 1, 1, signal12, text_color=signal12 == "SELL" ? color.red : (signal12 == "BUY" ? color.green : color.gray))

if selectedCoin == "MEMEUSDT" and not na(rsi13)

    signal13 = rsi13 > 70 ? "SELL" : rsi13 < 30 ? "BUY" : "Normal"

    table.cell(rsiTable, 0, 1, "MEMEUSDT", text_color=color.white, bgcolor=color.blue)

    table.cell(rsiTable, 1, 1, signal13, text_color=signal13 == "SELL" ? color.red : (signal13 == "BUY" ? color.green : color.gray))

if selectedCoin == "HMSTRUSDT" and not na(rsi14)

    signal14 = rsi14 > 70 ? "SELL" : rsi14 < 30 ? "BUY" : "Normal"

    table.cell(rsiTable, 0, 1, "HMSTRUSDT", text_color=color.white, bgcolor=color.blue)

    table.cell(rsiTable, 1, 1, signal14, text_color=signal14 == "SELL" ? color.red : (signal14 == "BUY" ? color.green : color.gray))

if selectedCoin == "DUSKUSDT" and not na(rsi15)

    signal15 = rsi15 > 70 ? "SELL" : rsi15 < 30 ? "BUY" : "Normal"

    table.cell(rsiTable, 0, 1, "DUSKUSDT", text_color=color.white, bgcolor=color.blue)

    table.cell(rsiTable, 1, 1, signal15, text_color=signal15 == "SELL" ? color.red : (signal15 == "BUY" ? color.green : color.gray))

if selectedCoin == "XLMUSDT" and not na(rsi16)

    signal16 = rsi16 > 70 ? "SELL" : rsi16 < 30 ? "BUY" : "Normal"

    table.cell(rsiTable, 0, 1, "XLMUSDT", text_color=color.white, bgcolor=color.blue)

    table.cell(rsiTable, 1, 1, signal16, text_color=signal16 == "SELL" ? color.red : (signal16 == "BUY" ? color.green : color.gray))

if selectedCoin == "WIFUSDT" and not na(rsi17)

    signal17 = rsi17 > 70 ? "SELL" : rsi17 < 30 ? "BUY" : "Normal"

    table.cell(rsiTable, 0, 1, "WIFUSDT", text_color=color.white, bgcolor=color.blue)

    table.cell(rsiTable, 1, 1, signal17, text_color=signal17 == "SELL" ? color.red : (signal17 == "BUY" ? color.green : color.gray))

Yorum bırakın

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

Scroll to Top