yes i know this but the orders are filled usually some hours or at least 20-30 minutes after they are made.
I think its something to do with the post only option but i never use this as am making the orders via their api
---edit----
yes it looks like it
when i check my order details using the api i can see
{ id: 'fc4c2097-1ec8-400e-b2ef-416012d7cff9',
price: '112.00000000',
size: '0.10000000',
product_id: 'ETH-EUR',
side: 'sell',
type: 'limit',
time_in_force: 'GTC',
post_only: false,
created_at: '2018-11-28T09:57:23.598581Z',
fill_fees: '0.0000000000000000',
filled_size: '0.00000000',
executed_value: '0.0000000000000000',
status: 'open',
settled: false }
so post_only is set to false by default. That must be the reason. When post only is not set to TRUE the orders can be filled at the set price or very close to the set price is it working like this?
If i place sell order at 100 Euro it can be filled at price 100 Euro or sometimes 99.98 Euro.
That sounds to me so strange but i will try to understand the things in detail.
Is there any percentage how lower the price can go to be filled. If i set 100 Eur sell limit order how can i knwo if i allow 99.98 or how low it can be? For example someone can accept 99.98<fill order<=100
--edit2--
Now i am placing limit orders with post_only set to TRUE , will text back the result after some fills occur.
Might be usefull for someone facing same problem