retorno / aquitania

Algorithmic Trading with Artificial Intelligence

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

aquitania

đź’µ A framework for building trading bots

work in progress

Documentation will be released in July 2018.

It is currently an unstable version.

Installation

You can install it from the PyPI:

$ pip install aquitania

Usage

Running your first simulation:

from aquitania import Aquitania

aq = Aquitania(broker='test')
aq.run()

Instantiating Aquitania with a different data source:

aq = Aquitania(broker='oanda')

Running a Live Simulation:

aq.run(is_live=True)

Selecting assets:

aq = Aquitania(list_of_asset_ids=['USD_JPY', 'EUR_JPY'])

Cleaning past simulations data:

aq.clean_data()

Creating a custom strategy:

# TODO

Creating a custom indicator:

# TODO

About

Algorithmic Trading with Artificial Intelligence

License:MIT License


Languages

Language:Python 99.3%Language:Jupyter Notebook 0.7%