-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathHuobiSpot.php
121 lines (104 loc) · 2.05 KB
/
HuobiSpot.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
114
115
116
117
118
119
120
121
<?php
/**
* @author lin <465382251@qq.com>
* */
namespace Lin\Huobi;
use Lin\Huobi\Api\Spot\Subuser;
use Lin\Huobi\Api\Spot\Order;
use Lin\Huobi\Api\Spot\Market;
use Lin\Huobi\Api\Spot\Margin;
use Lin\Huobi\Api\Spot\Etf;
use Lin\Huobi\Api\Spot\Dw;
use Lin\Huobi\Api\Spot\Common;
use Lin\Huobi\Api\Spot\Account;
use Lin\Huobi\Api\Spot\Futures;
use Lin\Huobi\Api\Spot\Fee;
class HuobiSpot
{
protected $key;
protected $secret;
protected $host;
protected $options=[];
function __construct(string $key='',string $secret='',string $host='https://api.huobi.pro'){
$this->key=$key;
$this->secret=$secret;
$this->host=$host;
}
/**
*
* */
private function init(){
return [
'key'=>$this->key,
'secret'=>$this->secret,
'host'=>$this->host,
'options'=>$this->options,
];
}
/**
*
* */
function setOptions(array $options=[]){
$this->options=$options;
}
/**
*
* */
public function account(){
return new Account($this->init());
}
/**
*
* */
public function common(){
return new Common($this->init());
}
/**
*
* */
public function dw(){
return new Dw($this->init());
}
/**
*
* */
public function etf(){
return new Etf($this->init());
}
/**
*
* */
public function margin(){
return new Margin($this->init());
}
/**
*
* */
public function market(){
return new Market($this->init());
}
/**
*
* */
public function order(){
return new Order($this->init());
}
/**
*
* */
public function subuser(){
return new Subuser($this->init());
}
/**
*
* */
public function futures(){
return new Futures($this->init());
}
/**
*
* */
public function fee(){
return new Fee($this->init());
}
}