ozgurhan

btc'nın aşırı alış ve satışı

BINANCE:BTCUSD   บิทคอยน์
4 saatlik grafikte aşağıda verdiğim btc'nin rsi değeri değeri 20-80 değerlerine göre aşırı alış ve satış pine script kodlarını verdim ve alarmda ekeldim.
siz isterseniz rsi 30-70'e göre de ayarlayabilirsiniz.
Muhtemelen rsi 80 aşırı alış değerinden sonra btc fiyatı düşecektir.

// This source code is subject to the terms of the Mozilla Public License 2.0 at mozilla.org/MPL/2.0/
// © ozgurhan

//@version=4

study(title="rsi asiri alis ve satis", shorttitle="rsi asiri alis ve satis", overlay=true)
// inputlar
rsiLength = input(14, title="RSI Length:", type=input.integer, minval=1)
rsi_asiri_alis = input(80, title="RSI Aşırı alış:", type=input.integer, minval=1)
rsi_asiri_satis = input(20, title="RSI Aşırı satış:", type=input.integer, minval=1)
drawOnRT = input(title="Draw On Candles Yet To Close:", type=input.bool, defval=true)
// aşırı alış ve satış değerleri
rsi = rsi(close, rsiLength)
rsi_alis = rsi >= rsi_asiri_alis
rsi_satis = rsi <= rsi_asiri_satis
// Plotlar ve alarmlar
plotshape(rsi_satis and (barstate.ishistory or drawOnRT), title= "Aşırı satış", location=location.belowbar, color=color.green, transp=0, style=shape.triangleup, text="BUY")
plotshape(rsi_alis and (barstate.ishistory or drawOnRT), title= "Aşırı alış", color=color.red, transp=0, style=shape.triangledown, text="SELL")
alertcondition(rsi_alis or rsi_satis, title="RSI+ Alert!", message="RSI Alert for ")

คำจำกัดสิทธิ์ความรับผิดชอบ

ข้อมูลและบทความไม่ได้มีวัตถุประสงค์เพื่อก่อให้เกิดกิจกรรมทางการเงิน, การลงทุน, การซื้อขาย, ข้อเสนอแนะ หรือคำแนะนำประเภทอื่น ๆ ที่ให้หรือรับรองโดย TradingView อ่านเพิ่มเติมที่ เงื่อนไขการใช้บริการ