error

 
OrdersTotal() should return int type

// Przemek Batte

#include <stdlib.mqh>
#property copyright "Copyright © 2004, MetaQuotes Software Corp."
#property link "https://www.metaquotes.net/

int start()
{
OrderSend(Symbol(),OP_BUY,0.1,Ask,3,0,0,"expert comment",255,0,CLR_NONE);

if ( OrdersTotal() == 0 ) Print("see...");


return(0);
}


best
Reason: