A package for predicting buy and sell signals based on alphaneural for quants
Project description
Machine Learning Evx
This is a simplified version of alphaneural package used to generate buy and sell signals for crypto and conventional stock markets based on the above article on medium.
Installation
Install alphaneural with python3 -m pip install alphaneural
Usage
In your python script simply import the module and use as follows:
from alphaneural.alphaneural import alpha_param
print(apha_param(df,'mem'))
The above methods take OHCLV data and the option to specifiy the file path as 'file' or in memory saved variable 'mem'. This will result in a single parameter
named alpha.
Testing an entire dataframe
Testing of a dataframe for correct buy, sell signals is as simple as applying the lambda function as follows:
import pandas as pd
from alphaneural import alpha_param
df = pd.read_csv('../../../path/to_your.csv')
def getEnterSignal(data,src):
alpha = alpha_param(data,f'{src}')
return alpha
mainsig = getEnterSignal(df,'mem')
df['sig'] = df['alpha'].apply(lambda x: 1 if x < mainsig else 0)
Alphaneural can be applied to a file as follows:
from alphaneural import alpha_param
alpha = alpha_param('../../../path/to_your.csv','file')
Warning
This is not financial advise. Alphaneural is entirely on its preliminary stages. Use it at your own risk.
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 alphaneural-0.0.5.tar.gz.
File metadata
- Download URL: alphaneural-0.0.5.tar.gz
- Upload date:
- Size: 4.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.10.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7acb8af1e273a88cd398312ee74283d653c4bda917436ab6a5668cd39c552795
|
|
| MD5 |
1404d26bd699dff70bad507d2e01e7f3
|
|
| BLAKE2b-256 |
34217d3afb30ac93ef082574f39787dece92a563a79d658c068a3ce1b2b7acd8
|
File details
Details for the file alphaneural-0.0.5-py3-none-any.whl.
File metadata
- Download URL: alphaneural-0.0.5-py3-none-any.whl
- Upload date:
- Size: 3.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.10.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
83b6795143952813cbecc19a0441bc13d3b7d145823abe2e81e68c58cdf362ca
|
|
| MD5 |
2400f01ffbf34a008df1cb895688a92d
|
|
| BLAKE2b-256 |
c21052b8d743b63a267036ac73bf3c72ebf7fc546e49908127ad29d21f5dae7a
|