How to check 3 RSI values against the Bollinger Bands?
问题 There are Bollinger Bands with three RSI running in the basement. I want to do a check on the signal in such a way that when 3 RSI struck the zone of the upper Bbands, there was a signal down and vice versa: int start(){ double ma, stdev; int i, limit, count=IndicatorCounted(); if(count<0) return(0); limit=Bars-count; if(limit>1) limit=Bars-1; for(i=limit; i>=0; i--) { RSI[i] =iRSI(Symbol(),Period(),rsi_period, PRICE_CLOSE,i); RSI2[i]=iRSI(Symbol(),Period(),rsi_period_2,PRICE_CLOSE,i); RSI3[i