About RSI

Created at 04 Aug 2020, 00:24
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