adaptation of a Tradingview code at the request of the French forum :
based on Larry Connors’ RSI-2 system.
The RSI-2 Strategy is designed to use on Daily Bars, however it is a short term trading strategy. The average length of time in a trade is just over 2 days.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
REM CM-RSI //Created by ChrisMoody //Based on Larry Connors RSI-2 Strategy - Lower RSI //study(title="_CM_RSI_2_Strat_Low", shorttitle="_CM_RSI_2_Strategy_Lower", overlay=false) // on platform Tradingview //adapted by platform Prorealtime v10.3 by bolsatrilera //RSI CODE up =WilderAverage[2](max(close-close[1],0)) down =WilderAverage[2](-min(close-close[1], 0)) rs = 100 - (100 / (1 + up / down)) //Criteria for Moving Avg rules ma5 = average[5](close) ma200= average[200](close) //Rule for RSI Color if close > ma200 and close < ma5 and rs < 10 then r=0 g=255 b=0 elsif close < ma200 and close > ma5 and rs > 90 then r=255 g=0 b=0 else r=192 g=192 b=192 endif return 100 coloured(0,255,255)style(line,3)as "Upper Line 100",0 coloured(0,255,255)style(line,3)as "Lower Line 0", 90 coloured(0,255,255)style(line,3)as "Upper line 90",10 coloured(0,255,255)style(line,3)as "Lower Line 10",rs coloured(r,g,b) style(line,2) as "rsi" |
Share this
No information on this site is investment advice or a solicitation to buy or sell any financial instrument. Past performance is not indicative of future results. Trading may expose you to risk of loss greater than your deposits and is only suitable for experienced investors who have sufficient financial means to bear such risk.
ProRealTime ITF files and other attachments :
Filename : download the ITF files
How to import ITF files into ProRealTime platform?
PRC is also on YouTube, subscribe to our channel for exclusive content and tutorials
Thanks
Bonjour Bolsatrilera, je trouve le cm rsi interessant, merci de l’avoir mis à disposition ! Mais je me demande s’il existe une version qui ferait apparaitre les divergences avec le cours, auriez-vous des informations dans ce sens? Merci beaucoup, cordialement, Jissey
bonjour jissey, je n’ai aucune information sur ce que tu dis, je suis désolé.