I'm trying to receive real-time update abut my order status change and trade done,
using this PHP socketio client example: https://github.com/MtGox/websocket
I successful receive general "depth" , "trade" real time information but not "private/trade" "private/orders" real time information.
The method:
$socketio->callBlocking('private/orders')
The method:
$socketio->on('trade', function($msg) { var_dump($msg); });
But this method is not giving me any update when my order status change etc:
$socketio->on('private/orders', function($msg) { var_dump($msg); });
What am i missing?
Any help will be appreciate.
Regards,
Mostar