Skip to main content

Frequently used functions for financial data analysis

Project description

x1

PyPI version PyPI version Travis CI codecov Documentation Status CodeFactor GitHub license

Frequently used functions for financial data analysis

Installation

pip install xone

Utilities

Files

Automatic check and create path and save files:

In[1]: import pandas as pd
In[2]: from xone import files

In[3]: DATA_PATH = '/data/Bloomberg'

In[4]: ticker = 'BHP AU Equity'
In[5]: data_file = f'{DATA_PATH}/{ticker.split()[-1]}/{ticker}/2018-09-10.parq'
In[6]: sample = pd.DataFrame(
  ...:     data=dict(
  ...:         price=[31.08, 31.10, 31.11, 31.07, 31.04, 31.04],
  ...:         volume=[10166, 69981, 14343, 10096, 11506, 9718],
  ...:     ),
  ...:     index=pd.DatetimeIndex(
  ...:         start='2018-09-10T10:10:00', periods=6, freq='min'
  ...:     ).tz_localize('Australia/Sydney'),
  ...: )

In[7]: files.create_folder(data_file, is_file=True)
In[8]: sample.to_parquet(data_file)

Logs

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

xone-0.0.8.tar.gz (13.3 kB view hashes)

Uploaded Source

Built Distribution

xone-0.0.8-py3-none-any.whl (19.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page