Git Product home page Git Product logo

ailabx's Introduction

ailabx

AI量化实验室,专注将前沿人工智能技术(深度学习/强化学习/知识图谱)应用于金融量化投资。

项目说明

传统的量化平台,主要是以提供技术面、基本面的数据为基础,需要用户自行按自己的思路和需求编写策略。 用户需要写大量的模板代码,ailabx首先通过“模块化”精减大量的模板代码。

“积木式”实现策略示例

“买入并持有”策略: buy_and_hold = Strategy([ RunOnce(),

PrintBar(),

SelectAll(),

WeighEqually(),

])

“均线交叉策略”:

long_expr = 'cross_up(ma(close,5),ma(close,10))'

flat_expr = 'cross_down(ma(close,5),ma(close,10))'

ma_cross = Strategy([

SelectByExpr(long_expr=long_expr,flat_expr=flat_expr),

WeighEqually(),

])

另外,传统量化平台本质上是用户思路的自动化,“自动化”只是量化的初级阶段。

“智能化”才是量化的核心与终级目标。

基于机器学习、深度学习、强化学习等人工智能前沿工具,机器自动发现数据中的模式,并优化相应的策略,是这个我们这个平台的核心目标。

开发环境与安装部署

anaconda python3.6

直接git或者下载源码包,安装相关依赖,然后运行main.py即可。

git clone https://github.com/ailabx/ailabx.git

cd ailabx

pip install requirements.txt

python main.py

image

联系我们

也可以关注微信公众号:ailabx。

image

有任何问题或者建议,欢迎加入QQ群讨论:8430159, 扫码进QQ群:

image

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.