TradingView
ZenAndTheArtOfTrading
2017년 8월 25일 오전 7시 36분

RSI+ Overbought/Sold Indicator 

USD/CHFOANDA

설명

This is a very simple script that plots signals on the chart whenever the RSI crosses the given threshold. Nothing fancy, but it is useful for deciding when to exit trades or prepare for pullbacks or for confirming that the market is currently in the middle of an extremely impulsive move or trend. It has alert functionality and you can set the overbought/sold thresholds and RSI length in the options menu.

Note: I definitely wouldn't recommend using it to enter trades unless you're an experienced counter-trend trader :)

Regards -
Matt.

릴리즈 노트

Removed text labels to make indicator more subtle. Very useful as a background confirmation tool against support & resistance for counter-trend opportunities or for gauging momentum during over-extended pullbacks for trend-continuation opportunities.

릴리즈 노트

-

릴리즈 노트

Minor improvements

릴리즈 노트

Updated to Pine Script v5
코멘트
rizwanahmed10295
what is belaow rsi indicator that showing real time rsi iwant that please
pikachuventures
How would you do, if you wanted to plot only 1 time only between every 10 candles ?
ZenAndTheArtOfTrading
@pikachuventures, Add this to beneath the line that says "rsiOS = rsi <= rsiOversold":

// Check to see if a signal has been generated within our lookback period
for i = 1 to 10
if(rsiOB)
rsiOB := false
if(rsiOS)
rsiOS := false
ZenAndTheArtOfTrading
@pikachuventures, Here's a modified version of this script that will do what you need: pastebin.com/mGLVB9gD

Have fun & good luck with your trading :)
wbtvent
@ZenAndTheArtOfTrading, how do I enter the script on mt4 to setup the alerts?
ZenAndTheArtOfTrading
@wbtvent, TradingView scripts do not work on Metatrader, you'll need to find an equivalent script written in MQL
rampaige91
Hi, can you please make a non repainting MTF RSI Strategy/indicator?
I would like to use this as an entry signal but it repaints! Can you please help me with this.

rsi_tf = input.timeframe(title="RSI Timeframe", defval="60")
rsi_src = input.source(close, title="RSI Source")
rsi_len = input.int(9, minval=1, title="RSI Length")
rsi_ta = ta.rsi(rsi_src, rsi_len)
rsi_low = input.int(70, minval=5, maxval=95, step=1)
rsi_sec = request.security(syminfo.tickerid, rsi_tf, rsi_ta)
rsi_long_signal = rsi_sec < rsi_low
Ibrahim577
mrrobot58
Thank you very useful, is it possible to insert the trailing (RSI) for both the buy and the sell, with alerts to connect it as a signal to 3 commas?
더보기