@@ -41,11 +41,11 @@ In order to initialize a client that is not public, api-key and api-secret must
41
41
<br /> ├── SpotClient
42
42
<br /> │
43
43
<br /> └── FuturesClient
44
- <br /> │
45
- <br /> ├── FuturesClientUSDT
46
- <br /> └── FuturesClientCoin
47
- <br />
48
- <br />
44
+ <br /> │ │
45
+ <br /> │ ├── FuturesClientUSDT
46
+ <br /> │ └── FuturesClientCoin
47
+ <br /> │
48
+ <br /> └── OpsClient
49
49
<br />
50
50
As was mentioned earlier, unique endpoints are located as separate structs inside Client.
51
51
<br /> CRTP interface and implementations are separated inside `Binance_Client.cpp`. Generally speaking, implementations are marked by a `v_` prefix.
@@ -128,6 +128,8 @@ Each time a client object is created, a websocket client is also instantiated. I
128
128
- #### Notes
129
129
1. Default arguments are not allowed with threads. The argument must be specified
130
130
2. When passing a symbol as an argument to a stream starter, the symbol must be lower case.
131
+ 3. For options client streams, conversion from gzip to binary is performed when the stream is set up.
132
+ 4. For all options websocket streams, only `interval = 0` is supported. Otherwise, no stream will be established
131
133
132
134
### Optimizations
133
135
For Microsoft compilers set the following flags for better runtime performance:
@@ -148,9 +150,8 @@ For Microsoft compilers set the following flags for better runtime performance:
148
150
149
151
# Lined up
150
152
* constexpr for endpoints + api base after the release of c++20 (constexpr support for ` std::string ` )
151
- * Support for Vanilla Options (Currently only REST methods are supported. Websocket streams are not)
152
153
153
- ** Latest ` Version ` update: ` 2020-17 -03 ` (Binance API Changelogs have been implemented up to this date)**
154
+ ** Latest ` Version ` update: ` 2020-30 -03 ` (Binance API Changelogs have been implemented up to this date)**
154
155
155
156
# Links
156
157
* [ CRTP Method - Info] ( https://en.wikipedia.org/wiki/Curiously_recurring_template_pattern )
0 commit comments