Okex docs https://www.okex.com/docs/en
All interface methods are initialized the same as those provided by okex. See details src/api
Many interfaces are not yet complete, and users can continue to extend them based on my design. Welcome to improve it with me
Exchanges All integration
composer require "linwj/okex dev-master"
Instrument related API More
use Lin\Okex\OkexSpot;
$okex=new OkexSpot();
//Getting the order book of a trading pair. Pagination is not supported here.
//The whole book will be returned for one request. WebSocket is recommended here.
try {
$result=$okex->instrument()->getBook([
'instrument_id'=>'BTC-USDT',
'size'=>20
]);
print_r($result);
}catch (\Exception $e){
print_r(json_decode($e->getMessage(),true));
}
//Get market data. This endpoint provides the snapshots of market data and can be used without verifications.
//List trading pairs and get the trading limit, price, and more information of different trading pairs.
try {
$result=$okex->instrument()->get();
print_r($result);
}catch (\Exception $e){
print_r(json_decode($e->getMessage(),true));
}
Order related API More
$okex=new OkexSpot($key,$secret,$passphrase);
//Place an Order
try {
$result=$okex->order()->post([
'instrument_id'=>'btc-usdt',
'side'=>'buy',
'price'=>'100',
'size'=>'0.001',
//'type'=>'market',
//'notional'=>'100'
]);
print_r($result);
}catch (\Exception $e){
print_r(json_decode($e->getMessage(),true));
}
sleep(1);
//Get order details by order ID.
try {
$result=$okex->order()->get([
'instrument_id'=>'btc-usdt',
'order_id'=>$result['order_id'],
]);
print_r($result);
}catch (\Exception $e){
print_r(json_decode($e->getMessage(),true));
}
sleep(1);
//Cancelling an unfilled order.
try {
$result=$okex->order()->postCancel([
'instrument_id'=>'btc-usdt',
'order_id'=>$result['order_id'],
]);
print_r($result);
}catch (\Exception $e){
print_r(json_decode($e->getMessage(),true));
}
Accounts related API More
$okex=new OkexSpot($key,$secret,$passphrase);
//This endpoint supports getting the list of assets(only show pairs with balance larger than 0),
//The balances, amount available/on hold in spot accounts.
try {
$result=$okex->account()->getAll();
print_r($result);
}catch (\Exception $e){
print_r(json_decode($e->getMessage(),true));
}
//This endpoint supports getting the balance, amount available/on hold of a token in spot account.
try {
$result=$okex->account()->get([
'currency'=>'BTC'
]);
print_r($result);
}catch (\Exception $e){
print_r(json_decode($e->getMessage(),true));
}
//All paginated requests return the latest information (newest) as the first page sorted by newest (in chronological time) first.
try {
$result=$okex->account()->getLedger([
'currency'=>'btc',
'limit'=>2,
]);
print_r($result);
}catch (\Exception $e){
print_r(json_decode($e->getMessage(),true));
}
Instrument related API More
$okex=new OkexFuture();
//List all contracts. This request does not support pagination. The full list will be returned for a request.
try {
$result=$okex->instrument()->getBook([
'instrument_id'=>'BTC-USD-190628',
'size'=>20,
]);
print_r($result);
}catch (\Exception $e){
print_r(json_decode($e->getMessage(),true));
}
//Get market data. This endpoint provides the snapshots of market data and can be used without verifications.
try {
$result=$okex->instrument()->get();
print_r($result);
}catch (\Exception $e){
print_r(json_decode($e->getMessage(),true));
}
Order related API More
$okex=new OkexFuture($key,$secret,$passphrase);
//Place an Order
try {
$result=$okex->order()->post([
'instrument_id'=>'btc-usd-190628',
'type'=>'1',
'price'=>'100',
'size'=>'1',
]);
print_r($result);
}catch (\Exception $e){
print_r(json_decode($e->getMessage(),true));
}
sleep(1);
//Get order details by order ID.
try {
$result=$okex->order()->get([
'instrument_id'=>'btc-usd-190628',
'order_id'=>$result['order_id'],
]);
print_r($result);
}catch (\Exception $e){
print_r(json_decode($e->getMessage(),true));
}
sleep(1);
//Cancelling an unfilled order.
try {
$result=$okex->order()->postCancel([
'instrument_id'=>'btc-usd-190628',
'order_id'=>$result['order_id'],
]);
print_r($result);
}catch (\Exception $e){
print_r(json_decode($e->getMessage(),true));
}
Accounts related API More
$okex=new OkexSpot($key,$secret,$passphrase);
//This endpoint supports getting the list of assets(only show pairs with balance larger than 0), the balances, amount available/on hold in spot accounts.
try {
$result=$okex->account()->getAll();
print_r($result);
}catch (\Exception $e){
print_r(json_decode($e->getMessage(),true));
}
//This endpoint supports getting the balance, amount available/on hold of a token in spot account.
try {
$result=$okex->account()->get([
'currency'=>'BTC'
]);
print_r($result);
}catch (\Exception $e){
print_r(json_decode($e->getMessage(),true));
}
//All paginated requests return the latest information (newest) as the first page sorted by newest (in chronological time) first.
try {
$result=$okex->account()->getLedger([
'currency'=>'btc',
'limit'=>2,
]);
print_r($result);
}catch (\Exception $e){
print_r(json_decode($e->getMessage(),true));
}
Position related API More
$okex=new OkexFuture($key,$secret,$passphrase);
//Get the information of holding positions of a contract.
try {
$result=$okex->position()->get([
'instrument_id'=>'BTC-USD-190628',
]);
print_r($result);
}catch (\Exception $e){
print_r(json_decode($e->getMessage(),true));
}
//Get the information of all holding positions in futures trading.Due to high energy consumption,
//You are advised to capture data with the "Futures Account of a Currency" API instead.
try {
$result=$okex->position()->getAll();
print_r($result);
}catch (\Exception $e){
print_r(json_decode($e->getMessage(),true));
}
being developed
being developed
being developed