';' - open parenthesis expected

 

Can you help me to fix this problem? ';' - open parenthesis expected bot.mq5 42 28

  • (42) double pipValue = Point;
  • (43) if (_Digits == 3 || _Digits == 5){
  • (44) pipValue *= 10;
  • (45) }
 
Sergio Vene:
  • (42) double pipValue = Point;
  • (43) if (_Digits == 3 || _Digits == 5){
  • (44) pipValue *= 10;
  • (45) }
  • point is a function

    double pipValue = Point();
    if ((_Digits == 3 )|| (_Digits == 5))
    {
    pipValue *= 10;
    }
    Reason: