A wrapper of kdb and sql for convenient trade data management.
Project description
*** IMPORTANT NOTICE ***This package is not in a usable stage. It is only uploaded for convenience of developing and testing. |
Postgreslq Initialization
CREATE DATABASE trade_data;
CREATE USER tradedbadmin WITH PASSWORD 'trade_password';
GRANT ALL PRIVILEGES ON DATABASE trade_data TO tradedbadmin;
\connect trade_data;
GRANT ALL ON SCHEMA public TO tradedbadmin;
Add the following lines in the pg_hba.conf file to allow password authentication for the tradedbadmin role.
# trade database
host all tradedbadmin 0.0.0.0/0 scram-sha-256
host all tradedbadmin ::/0 scram-sha-256
MetaData Initialization
Allowed instruments types are given in "Instrument Types" section of meta_enumerations.md.
Data Initialization for Instrument Type(s)
from trade_database_manager.manager import MetadataSql
metadatalib = MetadataSql()
metadatalib.initialize(for_inst_types="CB")
This will try to create two tables, instruments and instruments_cb in the database if not yet exists. The instruments table will store the common information of all instruments, and the instruments_cb table will store the type-specific information of the instruments of type CB.
The table fields are listed in the data_organization.md file.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file trade_database_manager-0.1.5.tar.gz.
File metadata
- Download URL: trade_database_manager-0.1.5.tar.gz
- Upload date:
- Size: 50.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5ea719bfdc8ceaa79a34a47388ab6939b96bdb709aa4e8b2a6aa760344ac7ccc
|
|
| MD5 |
c081c72325036d85a991aa69bf309667
|
|
| BLAKE2b-256 |
d26dad615be2b737155815d9bb8dd2404280b19ed5975f1d694085414a1ac7a9
|
File details
Details for the file trade_database_manager-0.1.5-py3-none-any.whl.
File metadata
- Download URL: trade_database_manager-0.1.5-py3-none-any.whl
- Upload date:
- Size: 37.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
32740d7d96124163b55ea9abc4f7731d3aa493505ffaa560f3c78d1edf448cfa
|
|
| MD5 |
a4b3a066d0bb6c70dc8ea89c2f890dda
|
|
| BLAKE2b-256 |
ca61b9bd4f8cc28c61e091add6b3fee02083e72a449ca4ed6cc6686482450b10
|