Fast numpy LAbeled aRRaY for financial time series data. Simply load, slice, cache, and analyze. Accelerators: C, Numba, Vectorization.
Project description
Numla Package
Fast numpy LAbeled aRRaY for financial time series data. Simply load, slice, cache, and analyze. Accelerators: C, Numba, Vectorization.
pip3 install numla
from numla import larry
or
import numla as la
ohlcv = np.array([[1, 2, 3, 4, 5], [6, 7, 8, 9, 10]])
label = [['open', 'high', 'low', 'close', 'volume'], ['2022-01-17 00:00:00', '2022-01-18 00:00:00']]
dk = larry(ohlcv, label, dtype=float)
or
dk = larry(dataframe)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
numla-0.0.1.tar.gz
(3.1 MB
view hashes)
Built Distribution
numla-0.0.1-py3-none-any.whl
(3.1 kB
view hashes)