@@ -10,12 +10,14 @@ This package provides access to **[dxFeed](https://www.dxfeed.com/)** market dat
1010[ ![ Language grade: C/C++] ( https://img.shields.io/lgtm/grade/cpp/g/dxFeed/dxfeed-c-api.svg?logo=lgtm&logoWidth=18 )] ( https://lgtm.com/projects/g/dxFeed/dxfeed-c-api/context:cpp ) 
1111
1212
13- ## Table of Сontents   
13+ ## Table of Contents   
1414-  [ Documentation] ( #documentation ) 
15+ -  [ Dependencies] ( #dependencies ) 
1516-  [ How to build] ( #how-to-build ) 
1617  *  [ Windows] ( #windows ) 
1718  *  [ Linux] ( #linux ) 
1819  *  [ macOS] ( #macos ) 
20+   *  [ Android Termux] ( #android-termux ) 
1921-  [ Key features] ( #key-features ) 
2022  *  [ Event types] ( #event-types ) 
2123  *  [ Contracts] ( #contracts ) 
@@ -54,30 +56,83 @@ Find useful information in self-service dxFeed Knowledge Base, or C API framewor
5456  *  [ Subscriptions] ( https://docs.dxfeed.com/c-api/group__c-api-basic-subscription-functions.html ) 
5557
5658
59+ ## Dependencies  
5760
61+ -  API
62+   -  Boost.Locale.EncodingUtf (1.75)
63+   -  [ TOML11] ( https://github.com/ToruNiina/toml11 )  (3.6.0)
64+ -  Tests
65+   -  [ Catch2] ( https://github.com/catchorg/Catch2 )  (2.13.8)
66+ -  C++ Wrappers
67+   -  [ Args] ( https://github.com/Taywee/args )  (6.2.2)
68+   -  [ fmt] ( https://github.com/fmtlib/fmt )  (8.0.0)
69+   -  [ optional-lite] ( https://github.com/martinmoene/optional-lite )  (3.1.1)
70+   -  [ string-view-lite] ( https://github.com/martinmoene/string-view-lite )  (1.1.0)
71+   -  [ variant-lite] ( https://github.com/martinmoene/variant-lite )  (1.1.0)
5872
5973
6074
6175## How to build  
6276
6377### Windows  
6478
65- System requirements: [ Visual C++ Redistributable 2015] ( https://www.microsoft.com/en-us/download/details.aspx?id=52685 ) , [ Visual Studio] ( https://visualstudio.microsoft.com/vs/ ) .
79+ System requirements (for the libressl) : [ Visual C++ Redistributable 2015] ( https://www.microsoft.com/en-us/download/details.aspx?id=52685 ) , [ Visual Studio] ( https://visualstudio.microsoft.com/vs/ ) .
6680
81+ Prerequisites: ` git ` , ` cmake ` , ` ninja `  or ` make ` , ` clang `  (mingw or VS) or ` gcc `  (mingw) or ` visual studio ` 
6782
68- * Coming soon* 
83+ ``` console 
84+ git clone https://github.com/dxFeed/dxfeed-c-api.git 
85+ cd dxfeed-c-api 
86+ mkdir build 
87+ cd build 
88+ cmake -DCMAKE_BUILD_TYPE=Release -DDISABLE_TLS=ON -DTARGET_PLATFORM=x64 .. 
89+ cmake --build . --config Release 
90+ ``` 
6991
7092--- 
7193
7294### Linux  
73- * Coming soon* 
95+ 
96+ Prerequisites: ` git ` , ` cmake ` , ` ninja `  or ` make ` , ` clang `  or ` gcc `  
97+ 
98+ ``` console 
99+ git clone https://github.com/dxFeed/dxfeed-c-api.git 
100+ cd dxfeed-c-api 
101+ mkdir build 
102+ cd build 
103+ cmake -DCMAKE_BUILD_TYPE=Release -DDISABLE_TLS=ON -DTARGET_PLATFORM=x64 .. 
104+ cmake --build . --config Release 
105+ ``` 
74106
75107--- 
76108
77109
78110### macOS  
79111
80- * Coming soon* 
112+ Prerequisites: ` git ` , ` cmake ` , ` ninja `  or ` make ` , ` clang ` 
113+ 
114+ ``` console 
115+ git clone https://github.com/dxFeed/dxfeed-c-api.git 
116+ cd dxfeed-c-api 
117+ mkdir build 
118+ cd build 
119+ cmake -DCMAKE_BUILD_TYPE=Release -DDISABLE_TLS=ON -DTARGET_PLATFORM=x64 .. 
120+ cmake --build . --config Release 
121+ ``` 
122+ --- 
123+ 
124+ ### Android Termux  
125+ 
126+ Prerequisites: ` git ` , ` cmake ` , ` ninja ` , ` clang ` 
127+ 
128+ ``` console 
129+ git clone https://github.com/dxFeed/dxfeed-c-api.git 
130+ cd dxfeed-c-api 
131+ mkdir build 
132+ cd build 
133+ cmake -DCMAKE_BUILD_TYPE=Release -DDISABLE_TLS=ON -DTARGET_PLATFORM=x64 .. 
134+ cmake --build . --config Release 
135+ ``` 
81136
82137
83138## Key features  
@@ -186,8 +241,8 @@ Order source in most cases identifies source of **`Order`** and **`SpreadOrder`*
186241  *  BZX - Cboe BZX
187242  *  BXTR - Cboe EU SI (Systematic Internaliser)
188243  *  BI20 - BIST Top20 Orders (Level2+)
189-  *  CHIX - Cboe EU CXE (Chi-X)
190-  *  CEUX - Cboe EU DXE
244+    *  CHIX - Cboe EU CXE (Chi-X)
245+    *  CEUX - Cboe EU DXE
191246  *  CFE - Cboe CFE
192247  *  C2OX - Cboe C2
193248  *  DEA - Cboe EDGA
@@ -197,13 +252,13 @@ Order source in most cases identifies source of **`Order`** and **`SpreadOrder`*
197252  *  FAIR - FairX
198253  *  GLBX - Globex
199254  *  ICE - ICE Futures US/EU
200-     *  IST - Borsa Istanbul
201-     *  MEMX - Members Exchange
255+   *  IST - Borsa Istanbul
256+   *  MEMX - Members Exchange
202257  *  NTV - Nasdaq TotalView
203258  *  NFX - Nasdaq NFX
204- *  SMFE - SmallEx
205-  *  XNFI - Nasdaq NFI
206-  *  XEUR - Eurex
259+    *  SMFE - SmallEx
260+    *  XNFI - Nasdaq NFI
261+    *  XEUR - Eurex
207262 --- 
208263* Price level book* :
209264
0 commit comments