Experts: iCCI iRSI

 

iCCI iRSI:

A trading system based on two custom indicators: CCI Color Levels and RSI Custom Smoothing.

iCCI iRSI

Author: Vladimir Karputov

 

A lot of text is of little use

 

I think you have error.

//---
   double cci[],rsi[];
   ArraySetAsSeries(cci,true);
   ArraySetAsSeries(rsi,true);
   int start_pos=0,count=3;
   if(!iGetArray(handle_iCCI,2,start_pos,count,cci) ||
      !iGetArray(handle_iCCI,2,start_pos,count,rsi))     // this should be 
                                                         // !iGetArray(handle_iRSI,2,start_pos,count,rsi))

handle_iRSI, not  handle_iCCI

Regards Bernhard

 
Bernhard Schweigert :

I think you have error.

handle_iRSI , not  handle_iCCI

Regards Bernhard

Yes you are right. Thank you very much!

Update (version 1.001) is available in the Russian part ( https://www.mql5.com/ru/code/23404 ).

iCCI iRSI
iCCI iRSI
  • www.mql5.com
Торговая система по двум пользовательским индикаторам: CCI Color Levels и RSI Custom Smoothing.
 

Hi!

Found an error on line 262

   double cci[],rsi[];
   ArraySetAsSeries(cci,true);
   ArraySetAsSeries(rsi,true);
   int start_pos=0,count=3;
   if(!iGetArray(handle_iCCI,2,start_pos,count,cci) || 
      !iGetArray(handle_iCCI,2,start_pos,count,rsi))
     {
      PrevBars=0;
      return;
     }
 
Hemish:

Hi!


You are confused about something. Everything is correct in version 1.001:

 
Vladimir Karputov:

You're confusing things. Everything is correct in version 1.001:

maybe not reuploaded? last date 2018.11.27
Files:
f08dyw.PNG  28 kb
 
Hemish:
maybe not reuploaded? last date 2018.11.27

Clean your cookies in your browser. Code updated 2019.10.24