Skip to content

Algorithmic Trading with Artificial Intelligence

License

Notifications You must be signed in to change notification settings

retorno/aquitania

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 99.3%
  • Jupyter Notebook 0.7%