Metadata-Version: 2.1
Name: alphanet
Version: 0.0.5
Summary: A recurrent neural network for predicting stock market performance
Home-page: https://github.com/Congyuwang/AlphaNetV3
Author: Congyu Wang
Author-email: leonwang998@foxmail.com
License: MIT License
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# AlphaNetV3

![unittest](https://github.com/Congyuwang/AlphaNetV3/actions/workflows/tests.yml/badge.svg)
[![Congyuwang](https://circleci.com/gh/Congyuwang/AlphaNetV3.svg?style=shield)](https://circleci.com/gh/Congyuwang/AlphaNetV3)
![publish](https://github.com/Congyuwang/AlphaNetV3/actions/workflows/python-publish.yml/badge.svg)

## A Recurrent Neural Network For Predicting Stock Prices

Requirement: tensorflow 2.

1. The model and data utility are in `./alphanet/` folder.
2. CSI500 and CSI800 stock market data are included in `./data/` folder.
3. Model Configuration is in `config.py`.
4. To run the model, execute `python main.py`.
5. The loss plot pictures and models will be stored by each epoch and training period in `./models/` folder.
6. Tests of layers and time series data tools are in `./tests/` folder.
   To run the test, execute `python -m unittest tests.tests`.

## Installation
Either clone this repository or just use pypi:
``pip install alphanet``.

The pypi project is here: https://pypi.org/project/alphanet/.
<!-- markdownlint-disable -->

# API Overview

## Modules

- [`alphanet`](./alphanet.md#module-alphanet): 复现华泰金工 alpha net V3 版本.
- [`alphanet.data`](./alphanet.data.md#module-alphanetdata): 多维多时间序列神经网络滚动训练数据工具箱.
- [`alphanet.metrics`](./alphanet.metrics.md#module-alphanetmetrics): 训练的计量信息.

## Classes

- [`alphanet.AlphaNetV3`](./alphanet.md#class-alphanetv3): alpha net v3版本模型.
- [`alphanet.Correlation`](./alphanet.md#class-correlation): 每个stride各个时间序列的相关系数.
- [`alphanet.Covariance`](./alphanet.md#class-covariance): 每个stride各个时间序列的covariance.
- [`alphanet.FeatureExpansion`](./alphanet.md#class-featureexpansion): 时间序列特征扩张层.
- [`alphanet.LinearDecay`](./alphanet.md#class-lineardecay): 每个序列各个stride的线性衰减加权平均.
- [`alphanet.Return`](./alphanet.md#class-return): 每个序列各个stride的回报率.
- [`alphanet.Std`](./alphanet.md#class-std): 每个序列各个stride的标准差.
- [`alphanet.ZScore`](./alphanet.md#class-zscore): 每个序列各个stride的均值除以其标准差.
- [`data.TimeSeriesData`](./alphanet.data.md#class-timeseriesdata): 单个时间序列信息.
- [`data.TrainValData`](./alphanet.data.md#class-trainvaldata): 该类用于生成不同训练阶段的tensorflow dataset.
- [`metrics.UpDownAccuracy`](./alphanet.metrics.md#class-updownaccuracy): 通过对return的预测来计算涨跌准确率.

## Functions

- [`alphanet.load_model`](./alphanet.md#function-load_model): 包装``tf.kreas``的``load_model``，添加``UpDownAccuracy``.


---

_This file was automatically generated via [lazydocs](https://github.com/ml-tooling/lazydocs)._


