Simon Popov
Simon Popov
Friends 1
Simon Popov
Added topic I have been working on this EA code for months and still seem to be getting errors. HELP!
int fibo( int x, int y, int z) {    if (z > 0 )      return x + z * (y - x);    else      return y + z * (x - y); } int OnInit () {    // Initialize global variables and
Simon Popov
Registered at MQL5.community