-
Notifications
You must be signed in to change notification settings - Fork 43
/
trade.php
124 lines (98 loc) · 2.48 KB
/
trade.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<?php
/**
* @author lin <[email protected]>
*
* Fill in your key and secret and pass can be directly run
*
* Most of them are unfinished and need your help
* https://github.com/zhouaini528/huobi-php.git
* */
use Lin\Binance\Binance;
require __DIR__ .'../../../vendor/autoload.php';
include 'key_secret.php';
$binance=new Binance($key,$secret);
$binance->setOptions([
//Set the request timeout to 60 seconds by default
'timeout'=>10,
//https://github.com/guzzle/guzzle
'proxy'=>[],
//https://www.php.net/manual/en/book.curl.php
'curl'=>[],
//default is v1
//'version'=>'v3',
]);
//Send in a new order.
try {
$result=$binance->trade()->postOrder([
'symbol'=>'LTCUSDT',
'side'=>'SELL',
'type'=>'LIMIT',
'quantity'=>'0.1',
'price'=>'500',
'timeInForce'=>'GTC',
]);
print_r($result);
}catch (\Exception $e){
print_r(json_decode($e->getMessage(),true));
}
//Check an order's status.
try {
$result=$binance->user()->getOrder([
'symbol'=>'LTCUSDT',
'orderId'=>'22222',
'origClientOrderId'=>'22222',
]);
print_r($result);
}catch (\Exception $e){
print_r(json_decode($e->getMessage(),true));
}
//Cancel an active order.
try {
$result=$binance->trade()->deleteOrder([
'symbol'=>'LTCUSDT',
'orderId'=>'111111',
'origClientOrderId'=>'1111111',
]);
print_r($result);
}catch (\Exception $e){
print_r(json_decode($e->getMessage(),true));
}
//New OCO (TRADE)
try {
$result=$binance->trade()->postOrderOco([
'symbol'=>'LTCBTC',
'side'=>'SELL',
'type'=>'LIMIT',
'quantity'=>'0.1',
'price'=>'200',
'stopPrice'=>'0.1',
'timeInForce'=>'GTC',
]);
print_r($result);
}catch (\Exception $e){
print_r(json_decode($e->getMessage(),true));
}
//Cancel OCO (TRADE)
try {
$result=$binance->trade()->deleteOrderList([
'symbol'=>'LTCBTC',
'orderListId'=>'xxxxxxx',
'newClientOrderId'=>'xxxxxxx',
//'listClientOrderId'=>'xxxxxxx',
]);
print_r($result);
}catch (\Exception $e){
print_r(json_decode($e->getMessage(),true));
}
//Cancel OCO (TRADE)
try {
$result=$binance->trade()->deleteOrderList([
'symbol'=>'LTCBTC',
'orderListId'=>'xxxxxxx',
'newClientOrderId'=>'xxxxxxx',
//'listClientOrderId'=>'xxxxxxx',
]);
print_r($result);
}catch (\Exception $e){
print_r(json_decode($e->getMessage(),true));
}