Read and return pricing update data. Parameters ---------- dts : DatetimeIndex The minutes for which to read the pricing updates. sids : iter[int] The sids for which to read the pricing updates. Returns -------
(self, dts, sids)
| 1299 | |
| 1300 | @abstractmethod |
| 1301 | def read(self, dts, sids): |
| 1302 | """ |
| 1303 | Read and return pricing update data. |
| 1304 | |
| 1305 | Parameters |
| 1306 | ---------- |
| 1307 | dts : DatetimeIndex |
| 1308 | The minutes for which to read the pricing updates. |
| 1309 | sids : iter[int] |
| 1310 | The sids for which to read the pricing updates. |
| 1311 | |
| 1312 | Returns |
| 1313 | ------- |
| 1314 | data : iter[(int, DataFrame)] |
| 1315 | Returns an iterable of ``sid`` to the corresponding OHLCV data. |
| 1316 | """ |
| 1317 | raise NotImplementedError() |
| 1318 | |
| 1319 | |
| 1320 | class H5MinuteBarUpdateWriter(object): |
no outgoing calls