Difference between Point and _Point MQL4

 
Hello experts i have a question about _Point  and   Point 

i seen both are use in same place such as in below example Point is used at the End of Stop-Loss. but both colors different. 

ticket=OrderSend(Symbol(),OP_SELL,lot,Bid,3,Bid+StopLoss*_Point,0,"Fxtradewar@gmail.com",MagicNumber,0,Red);

or

ticket=OrderSend(Symbol(),OP_SELL,lot,Bid,3,Bid+StopLoss*Point,0,"Fxtradewar@gmail.com",MagicNumber,0,Red);

i did not yet confirm the first one with pink color work or not but the 2nd is working.

The Same question about _Symbol and Symbol()

if (OrderSymbol()==_Symbol && OrderMagicNumber()==MagicNumber)

//Or

if (OrderSymbol()==Symbol() && OrderMagicNumber()==MagicNumber)
 
Ali Raza:

Difference between Point and _Point MQL4

None and none.

 
William Roeder #:

None and none.

Thanks for reply

Reason: