Universal connector for Binance, Bittrex, Huobi and Okex APIs
- Binance
- Bittrex
- Huobi
- Okex
Use Composer to import package in your project.
composer require mazanax/exchange-connector
Have to choose exchange to connect and make Connection
object with needed settings. After that, use resolve
to make connector.
$connector = (new Connector(''))->resolve(new Connection(
'binance',
'API_KEY',
'API_SECRET'
));
print_r($connector->orders());
You can find more examples in tests
folder.