read_parquet#
- read_parquet(path, filters=None)[source]#
Reads compressed Parquet file of data to memory.
File or stream can describe
tradingstrategy.candle.Candle
ortradingstrategy.pair.DEXPair
data.Filtering of candle data can be done during the read time, so that large dataset files do not need to be fully loaded to the memory. This severely reduces the RAM usage for low-memory environments when dealing Parquet.
For filtering options see Parquet documentation.
See
pyarrow.parquet.read_table()
.