ordersend function on ECN plateform

 

i test ordersend function on an ECN plateform,nomatter which price i set,it always been excuted .

i want to know why ?

thanks.

my code as follow :

int start()
{
OrderSend(Symbol(),OP_BUY,0.1,Ask-0.00005,0,0,0,"",0,0,Green);

return(0);
}

 

AFAIK on a ECN the OpenPrice in "Market Execution Orders" is just cosmetic, you will always get the best price avaliable... if you want to enter at a specific price you have to enter trough MarketOffers/PendingOrders..

i hope i got this quite correct...

 
zzuegg:

AFAIK on a ECN the OpenPrice in "Market Execution Orders" is just cosmetic, you will always get the best price avaliable... if you want to enter at a specific price you have to enter trough MarketOffers/PendingOrders..

i hope i got this quite correct...


thank you i understand .
Reason: