Moved to right section.
Charly Oudy: My custom RSI indicator with divergency freeze, and I don't know why.
You have an infinite loop.
You have loops inside loops inside loops and they all use the same index variable.
int i,pos; : for(i=1; i<=InpRSIPeriod; i++)
delete those common variables, and make them unique to each loop
for(int i=1; i<=InpRSIPeriod; i++)

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Hi,
My custom RSI indicator with divergency freeze, and I don't know why. It freezes when you change timeframe or when you change profiles...
Please find the file attached.