Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/efjerryyang/worldquant-brain-simulator

This is a simulator to help with backtesting your alphas offline for platform WorldQuant Brain
https://github.com/efjerryyang/worldquant-brain-simulator

Last synced: about 1 month ago
JSON representation

This is a simulator to help with backtesting your alphas offline for platform WorldQuant Brain

Awesome Lists containing this project

README

        

# WorldQuant BRAIN Simulator

## Introduction

This is a simulator to help with backtesting your alphas offline for platform WorldQuant Brain

## Demo

Some problems exist (data, expressions, procedure), so the results are still different from the platform's.

![insample](./docs/insample.png)

![insample_platform](./docs/insample_platform.png)

## Project Structure

```sh
worldquant-brain-simulator/
|-- data
| `-- stock_snowball_us.db
|-- docs
|-- LICENSE
|-- README.md
|-- requirements.txt
`-- src
|-- alpha_pool
| |-- alpha101.py
| |-- alpha.py
| |-- expression.py
| `-- __init__.py
|-- datasource
| |-- database.py
| |-- fetch.py
| `-- __init__.py
|-- main.py
`-- simulator
|-- __init__.py
|-- settings.yaml
|-- simulate.py
`-- util.py
```

## References

- The fast expression and Alpha 101 implementation: [WorldQuant_alpha101_code](https://github.com/yli188/WorldQuant_alpha101_code)