You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For timed subscription you may provide either datetime object or string. String might be incomlete, in this case you will get warning with how your provided date parsed automatically
102
+
For timed subscription you may provide either datetime object or string. String might be incomplete, in
103
+
this case you will get warning with how your provided date parsed automatically.
Data is stored as deque. Its length is configured with data_len parameter and by default is 100000. When you call method below you extracts all data recieved to the moment and clears the buffer in class.
127
-
139
+
In DefaultHandler the data is stored as deque. Its length may be configured, by default 100000 events.
128
140
129
141
```python
130
-
candle_sub.get_data()
142
+
candle_handler.get_list()
131
143
```
132
144
133
145
### Close connection
@@ -144,17 +156,10 @@ Connection status: Not connected
144
156
145
157
### Transform data to pandas DataFrame
146
158
159
+
DefaultHandler has `get_dataframe` method, which allows you to get pandas.DataFrame object with events as rows.
0 commit comments