Metadata-Version: 2.1
Name: estrade
Version: 0.1.1
Summary: Build, Backtest and Go Live your own trading bots
Home-page: https://pypi.org/project/estrade/
License: GPL-3.0-or-later
Keywords: trading,trading-bot,backtesting-trading-strategies,backtesting
Author: Gabriel Oger
Requires-Python: >=3.6,<4.0
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Office/Business :: Financial
Classifier: Topic :: Software Development
Requires-Dist: arrow (>=0.15.5,<0.16.0)
Requires-Dist: pyYAML (>=5.3,<6.0)
Requires-Dist: python-dateutil (>=2.8.1,<3.0.0)
Requires-Dist: pytz (>=2019.3,<2020.0)
Requires-Dist: requests (>=2.22.0,<3.0.0)
Project-URL: Documentation, https://estrade.readthedocs.io/
Project-URL: Repository, https://github.com/cimourdain/estrade
Description-Content-Type: text/markdown

# Estrade

[![Build Status](https://travis-ci.com/cimourdain/estrade.svg?branch=master)](https://travis-ci.com/cimourdain/estrade)
[![Documentation Status](https://readthedocs.org/projects/estrade/badge/?version=latest)](https://estrade.readthedocs.io/en/latest/?badge=latest)
[![pypi](https://badgen.net/pypi/v/estrade)](https://pypi.org/project/estrade/)
[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)](https://github.com/pre-commit/pre-commit)
[![black](https://badgen.net/badge/code%20style/black/000)](https://github.com/ambv/black)

# Estrade: Trading bot manager

Estrade is a python library that allows you to easily backtest and run stock trading strategies.

Estrade focus on providing tools so you mainly focus on your strategy definition.

>  **WARNING**: Estrade is still in an alpha state of developpement and very unmature. Do not use it for other purposes than testing.

## Features

- Estrade provides a **market environnement**, so you do not have to worry about
   - Trades result calculation
   - Candle Graph building
   - Indicators calculation
- Estrade allows you to define your strategies based on market events (new tick received, new candle created)
- Estrade allows you to create your own data providers to generate ticks data and manage trades (open/close)
- Estrade allows you to create your own indicators
- Estrade allows you to create your own reporting


## What Estrade does NOT provides

- **Data**: You have to define your own data provider (live or static)
- **Strategies**: Although some very basic (and useless) strategies are provided as examples in samples, Estrate does not provide any financially relevant strategy.

## Documentation

[Documentation](https://estrade.readthedocs.io/)



