ozgurhan

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

BINANCE:BTCUSD   Bitcoin
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 ")

Clause de non-responsabilité

Les informations et les publications ne sont pas destinées à être, et ne constituent pas, des conseils ou des recommandations en matière de finance, d'investissement, de trading ou d'autres types de conseils fournis ou approuvés par TradingView. Pour en savoir plus, consultez les Conditions d'utilisation.