찾기
프로덕트
커뮤니티
마켓
뉴스
브로커
더보기
KO
지금 시작
커뮤니티
/
아이디어
/
Rsi
미국 달러 / 일본 엔
Rsi
danial37의
팔로우
팔로우
2023년 3월 27일
0
2023년 3월 27일
//
version
=5
strategy("RSI Strategy", overlay=true)
// Define input variables
rsi_length = input(14, title="RSI Length")
rsi_buy = input(30, title="RSI Buy Threshold")
rsi_sell = input(70, title="RSI Sell Threshold")
// Calculate RSI
rsi_value = rsi(close, rsi_length)
// Define buy and sell signals
buy_signal = rsi_value < rsi_buy
sell_signal = rsi_value > rsi_sell
// Enter long position on buy signal
if (buy_signal)
strategy.entry("Buy", strategy.long)
// Exit long position on sell signal
if (sell_signal)
strategy.close("Buy")
// Plot RSI
plot(rsi_value, title="RSI", color=color.blue)
// Plot buy and sell signals
plotshape(buy_signal, style=shape.triangleup, location=location.belowbar, color=color.green, size=size.small)
plotshape(sell_signal, style=shape.triangledown, location=location.abovebar, color=color.red, size=size.small)
Technical Indicators
danial37
팔로우
면책사항
이 정보와 게시물은 TradingView에서 제공하거나 보증하는 금융, 투자, 거래 또는 기타 유형의 조언이나 권고 사항을 의미하거나 구성하지 않습니다. 자세한 내용은
이용 약관
을 참고하세요.