@@ -11,22 +11,16 @@ write his own custom listener in Cython
1111
1212## Installation
1313
14- ** Requirements:** python >3.6, cython, pandas
14+ ** Requirements:** python >3.6, pandas
1515
1616``` python
17- pip3 install cython pandas
17+ pip3 install pandas
1818```
1919
20- Install package itself with PyPI
20+ Install package via PyPI
2121
2222``` python
2323pip3 install dxfeed
24- ```
25-
26- or with tar.gz artifact
27-
28- ``` python
29- pip3 install dxfeed- x.x.x.tar.gz
3024```
3125
3226## Basic usage
@@ -54,18 +48,18 @@ sub2 = dx.dxf_create_subscription(con, 'Quote')
5448'Trade', 'Quote', 'Summary', 'Profile', 'Order', 'TimeAndSale', 'Candle', 'TradeETH', 'SpreadOrder',
5549'Greeks', 'TheoPrice', 'Underlying', 'Series', 'Configuration' event types are supported.
5650
57- ** Add tickers you want to get data for** :
58- ``` python
59- dx.dxf_add_symbols(sub1, [' AAPL' , ' MSFT' ])
60- dx.dxf_add_symbols(sub2, [' AAPL' , ' C' ])
61- ```
62-
6351** Attach listeners** :
6452``` python
6553dx.dxf_attach_listener(sub1)
6654dx.dxf_attach_listener(sub2)
6755```
6856
57+ ** Add tickers you want to get data for** :
58+ ``` python
59+ dx.dxf_add_symbols(sub1, [' AAPL' , ' MSFT' ])
60+ dx.dxf_add_symbols(sub2, [' AAPL' , ' C' ])
61+ ```
62+
6963` dxfeed ` has default listeners for each event type, but you are able to write
7064your custom one. You can find how to do it at ` example/Custom listener example.ipynb ` .
7165
0 commit comments