marekbiruta:
int PORBullishBars(int i) {
int POR_Bullish_Counter = 0;
for(i = 1; i < Bars - 100; i++) { (this is 694 line where error occurs: '-' - open parenthesis expected
if(Bullish_POR_LevelBuffer[i] != 0 && Bullish_POR_LevelBuffer[i] != EMPTY_VALUE) {
POR_Bullish_Counter = i;
break;
}
}
return(POR_Bullish_Counter);
}
Please help me solve this problem, thank you in advance :)
try putting () after Bars at the problematic row - So Bars()
Stanislav Ivanov:
try putting () after Bars at the problematic row - So Bars()
I am not a programmer, how it should looks in code? and this is mql5.
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
}
Please help me solve this problem, thank you in advance :)