- [Watchpositionsforsymbols](./examples/php/) ```php 'YOUR_API_KEY', 'secret' => 'Your_API_SECRET', )); $symbols = ['BTC/USDT:USDT', 'ETH/USDT:USDT', 'DOGE/USDT:USDT']; while (true) { $trades = Async\await($exchange->watch_positions($symbols)); var_dump($trades); } }) (); } Async\await(example()); ```