Files
2025-10-03 15:28:16 +08:00

32 lines
644 B
Markdown

- [Bytetrade Create Order](./examples/php/)
```php
<?php
include './ccxt.php';
date_default_timezone_set('UTC');
echo 'PHP v' . PHP_MAJOR_VERSION . '.' . PHP_MINOR_VERSION . '.' . PHP_RELEASE_VERSION . "\n";
echo 'CCXT v' . \ccxt\Exchange::VERSION . "\n";
$exchange = new \ccxt\bytetrade(array(
// replace with your keys
'apiKey' => 'YOUR_API_KEY',
'secret' => 'YOUR_SECRET',
));
$exchange->load_markets();
$exchange->verbose = true;
$symbol = 'BTC/USDT';
$type = 'limit';
$side = 'buy';
$amount = 0.000865;
$price = 11560;
$order = $exchange->create_order($symbol, $type, $side, $amount, $price);
print_r ($order);
```