halirutan / roboquant

Roboquant is fast, flexible, user-friendly and completely free algorithmic trading platform

Home Page:https://www.roboquant.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Roboquant

Kotlin Automated Build GitHub code size APL v2 GitHub issues by-label GitHub issues by-label GitHub last commit GitHub commit activity GitHub tag (latest by date) Maven Central Sonatype Nexus (Snapshots) Quality Gate Status Security Rating Maintainability Rating

roboquant Logo

Roboquant is an algorithmic trading platform that is very fast and flexible while at the same time strives to be easy to use. It is fully open source, written in Kotlin, and can be used in Jupyter Notebooks as well as standalone applications.

It is designed to be used by anyone serious about algo trading, from beginning retail traders to established trading firms. You can find out more at roboquant.org. Please consider giving this repository a star ⭐ if you like the project.

Code sample

To demonstrate how easy it is to get started, the following code snippet shows the key ingredients required to back-test a trading strategy:

val strategy = EMACrossover() // (1)
val metric = AccountSummary() // (2)
val roboquant = Roboquant(strategy, metric) // (3)

val feed = CSVFeed("data/US") // (4)
roboquant.run(feed) // (5)
  1. Create the strategy that you want to validate

  2. Define the metrics you want to monitor during the back-test

  3. Create a Roboquant instance, the engine of the platform

  4. What data should be used, in this case CSV files

  5. Run the back test

Installation

Library

Just add roboquant and any of the additional modules as a dependency to your build tool, like Maven or Gradle. See also installation guide for more ways to install and use roboquant.

Latest available versions:

  • Stable version: Maven Central

  • Snapshot version: Sonatype Nexus (Snapshots)

Maven

Add the following dependency to your pom.xml file:

<dependency>
    <groupId>org.roboquant</groupId>
    <artifactId>roboquant</artifactId>
    <version>VERSION</version>
</dependency>

Gradle

Add the following line to your gradle script:

implementation group: 'org.roboquant', name: 'roboquant', version: 'VERSION'

Jupyter Notebooks

If you already have Docker installed, all it takes is a single command to have a fully functional Jupyter Lab environment available:

docker run --rm -p 8888:8888 roboquant/jupyter

This image also comes with several tutorials included. And if you just want to try it without any installation, go to Binder

Jupyter Lab

Features

Some key features of roboquant are:

  • ✓ Very fast back-testing, even on large volumes of historical data

  • ✓ Easy to develop your own strategies and integrate with third party brokers and data providers

  • ✓ Trade in multiple asset classes at the same time

  • ✓ Run anything from a technical indicator to complex machine learning based strategies

  • ✓ Easy to transition from back-testing to live trading

  • ✓ Trade on multi-markets with multi-currencies

  • ✓ Developed under open source with a permissive Apache license

  • ✓ Use Jupyter Notebooks with insightful charts if you prefer interactive development

  • ✓ Batteries included, for example 150+ technical indicators and ready to use datasets

  • ✓ Out of the box integration with Alpaca, Interactive Brokers, OANDA, IEX Cloud, Yahoo Finance, Alpha Vantage, Binance and most other crypto exchanges

See also Features for a more extensive feature list and how roboquant compares to some other platforms.

License

Roboquant is distributed under the Apache 2.0 License. The Apache 2.0 license is a permissive license, meaning there are few restrictions on the use of the code.

Thanks

Besides all the great open source software that is powering roboquant, also special thanks to JetBrains for making a license available of IntelliJ IDEA.

JetBrains

Disclaimer

Roboquant also comes with live trading and paper trading capabilities. Using this is at your own risk and there are NO GUARANTEES about the correct functioning of the software.

roboquant beta

Roboquant is still a pre-1.0 release and bugs are for sure to be expected. Also, APIs can change without any notice. So keep this in mind when using it.

PR are more than welcome, see also the Contribution Guide document. If you’re missing some features, just open an issue on GitHub. See also the todo documentation for already identified backlog items if you look for something to work on.

About

Roboquant is fast, flexible, user-friendly and completely free algorithmic trading platform

https://www.roboquant.org

License:Apache License 2.0


Languages

Language:Jupyter Notebook 79.1%Language:Kotlin 20.9%Language:Shell 0.0%