Tool to calculate technical analysis indicators in a continuous time series data
Project description
python_storage_timeline_ta_indicators
This library reads, cleans and sorts data acquired from web database. Values in a storage expected to be in a json format with a following structure:
{"time":1684968241256,"value":"{\"r\":[49208.040463174424,730195614842.3989]}"}
Class data aggregation takes link as an argument to create instance of a database. The data from the database could be updated manualy via update function.
To calculate ta indicators function print_indicators should be used that takes next arguments:
time in "2D", "4S" or "W" format that denotes length of even interwals time series will be divided.
length takes int input and stands for number of intervals that will be used to calculate the indicator.
indicators takes one (or multiple) of 'RSI', 'STOCH', 'STOCHRSI', 'ADX', 'MACD', 'WILLIAMS', 'CCI', 'ATR', 'HIGHLOW', 'ULTOSC', 'ULTOSC', 'ROC', 'MA'. If is None
calculates all of listed.
IMPORTANT
Some indicators require additional arguments. They should be added to print_indicators function with names used in ta-lib.
CODE EXAMPLE
from dataaggregation.aggregation import data_aggregation
my_data = data_aggregation('thelinkgoeshere')
my_data.get_data()
my_data.print_indicators('D', length = 14, smooth_step=6, indicators = ['RSI'])
Anomaly detection
Should only be used with a great understanding of features of data it was trained on. Works best on a volatile time series with high liquidity.
CODE EXAMPLE
from dataaggregation.aggregation import lstm_anomaly_detection
anms = lstm_anomaly_detection(url = 'thelinkgoeshere')
anms.detect_anomalies(threshold=1.25)
Output example####
NOW AVALIABLE ON PIP!
pip install python_storage_timeline_ta_indicators
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 Distributions
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 python_storage_timeline_ta_indicators-0.1-py3-none-any.whl.
File metadata
- Download URL: python_storage_timeline_ta_indicators-0.1-py3-none-any.whl
- Upload date:
- Size: 5.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fbbe691cf680a17502b804b6c626fa9a93530b4d081ba6cf364880959f3fc68b
|
|
| MD5 |
27b8d1ffd4621527654b4656fdc6718b
|
|
| BLAKE2b-256 |
c8d875284cf2ba32b14c6727f7068def7a8c88cf3a8270726744c7838e709cef
|