@@ -41,11 +41,11 @@ In order to initialize a client that is not public, api-key and api-secret must
4141 <br /> ├── SpotClient
4242 <br /> │
4343 <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
4949 <br />
5050 As was mentioned earlier, unique endpoints are located as separate structs inside Client.
5151 <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
128128- #### Notes
129129 1. Default arguments are not allowed with threads. The argument must be specified
130130 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
131133
132134### Optimizations
133135For 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:
148150
149151# Lined up
150152* 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)
152153
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)**
154155
155156# Links
156157* [ CRTP Method - Info] ( https://en.wikipedia.org/wiki/Curiously_recurring_template_pattern )
0 commit comments