@@ -4,16 +4,16 @@ This library provides Python API to dxfeed via C API. The code is written in Pyt
44
55## Installation
66
7- ** Requirements:** python >3.6, cython, pandas
7+ ** Requirements:** python >3.6, pandas
88
99``` python
10- pip3 install cython pandas
10+ pip3 install pandas
1111```
1212
13- Install package itself
13+ Install package via PyPI
1414
1515``` python
16- pip3 install dxpyfeed - x.x.x.tar.gz
16+ pip3 install dxfeed
1717```
1818
1919## Basic usage
@@ -41,18 +41,18 @@ sub2 = dx.dxf_create_subscription(con, 'Quote')
4141'Trade', 'Quote', 'Summary', 'Profile', 'Order', 'TimeAndSale', 'Candle', 'TradeETH', 'SpreadOrder',
4242'Greeks', 'TheoPrice', 'Underlying', 'Series', 'Configuration' event types are supported.
4343
44- ** Add tickers you want to get data for** :
45- ``` python
46- dx.dxf_add_symbols(sub1, [' AAPL' , ' MSFT' ])
47- dx.dxf_add_symbols(sub2, [' AAPL' , ' C' ])
48- ```
49-
5044** Attach listeners** :
5145``` python
5246dx.dxf_attach_listener(sub1)
5347dx.dxf_attach_listener(sub2)
5448```
5549
50+ ** Add tickers you want to get data for** :
51+ ``` python
52+ dx.dxf_add_symbols(sub1, [' AAPL' , ' MSFT' ])
53+ dx.dxf_add_symbols(sub2, [' AAPL' , ' C' ])
54+ ```
55+
5656` dxfeed ` has default listeners for each event type, but you are able to write
5757your custom one. You can find how to do it at ` example/Custom listener example.ipynb ` .
5858
0 commit comments