- [Create Orders Example](./examples/php/) ```php 'MY_API_KEY', 'secret' => 'MY_SECRET', )); $exchange->set_sandbox_mode(true); Async\await($exchange->load_markets()); $exchange->verbose = true; // uncomment for debugging purposes if necessary $orders = Async\await($exchange->create_orders([array( 'symbol' => 'LTC/USDT:USDT', 'type' => 'limit', 'side' => 'buy', 'amount' => 10, 'price' => 55, ), array( 'symbol' => 'ETH/USDT:USDT', 'type' => 'market', 'side' => 'buy', 'amount' => 0.5, )])); var_dump($orders); }) (); } Async\await(example()); ```