About RSI

Created at 04 Aug 2020, 00:24
How’s your experience with the cTrader Platform?
Your feedback is crucial to cTrader's development. Please take a few seconds to share your opinion and help us improve your trading experience. Thanks!
SA

samuel.jus.cornelio

Joined 19.03.2020

About RSI
04 Aug 2020, 00:24


 

Hello guys, please. Could someone tell me how to put several different RSI and with different settings in the same bot.

how to change your overbought and oversold levels and the indicator periods

since already, thankful  

 

 

 


@samuel.jus.cornelio
Replies

PanagiotisCharalampous
04 Aug 2020, 08:17

Hi samuel.jus.cornelio,

Here is an example 

           var rsi1 = Indicators.RelativeStrengthIndex(Bars.ClosePrices,14);
           var rsi2 = Indicators.RelativeStrengthIndex(Bars.ClosePrices,15);
           var rsi3 = Indicators.RelativeStrengthIndex(Bars.ClosePrices,16);
           var rsi4 = Indicators.RelativeStrengthIndex(Bars.ClosePrices,17);

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous