TradingView
pranjalchaubey
27 אוג׳ 2020 13:47

[CP]3 RSI Multi Timeframe Inception 

US Composite IndexTVC

תיאור

Triple RSI indicator where you can set the timeframe for each RSI.
Take confirmation from different timeframes to make high probability trades!

Typical settings would be,
1 Day, 1 Week, 1 Month or
1 hr, 4hr, 1 Day or
3 min, 15 min, 1 hr or.........your imagination is the only limit here!
תגובות
mermitesh23
hi , can you code multi level RSI indicator which enable us to plot horizontal line for different level , say 30, 40, 50 60, 70 etc
pranjalchaubey
@mermitesh23, You want to plot the lines on the candlestick chart or the RSI chart?
anoopdk
Great insights !
Need help - how do I use 15min RSI in a 5min RSI chart? I want to include 15min RSI in the 5min RSI BUY condition. Please suggest.
pranjalchaubey
@anoopdk, Change the RSI Timeframe in the indicator settings.
anoopdk
@pranjalchaubey, Thanks for answering.
I am building a strategy and I dont want to plot the indicator so that I can change the settings.
Instead,I have below RSI1(say 5min chart) and I want to create MTF RSI of 15min within the strategy and use both to compare.

src1 = input(close, title="RSI 1 Source")
//Timeframe
res1 = input(title="RSI 1 Timeframe", defval="5")
// Period
len1 = input.int(defval=14, minval=1, title="RSI 1 Length")
// Calculations
Overbought = input.int(title='OB', defval=60, minval=1, maxval=100, step=1)
Oversold = input.int(title='OS', defval=40, minval=1, maxval=100, step=1)
RSI = ta.rsi(src1, len1)

How do I go about?
krishnakknr3
@pranjalchaubey, use 15 minutues.. 1 hour.. and 1 day time frame use different colours as you wish. if 15 rsi is greater than other two RSIs go long .. if 15 RSI is less than other 2 rsis go short
rajprasad596
Sir, Plz tell me how can i change time frames..Thanks a lot for the coding
עוד