All Projects → Delta-F → DeltaTrader

Delta-F / DeltaTrader

Licence: other
极简版Python量化交易工具

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to DeltaTrader

Qlib
Qlib is an AI-oriented quantitative investment platform, which aims to realize the potential, empower the research, and create the value of AI technologies in quantitative investment. With Qlib, you can easily try your ideas to create better Quant investment strategies. An increasing number of SOTA Quant research works/papers are released in Qlib.
Stars: ✭ 7,582 (+4257.47%)
Mutual labels:  finance, quant
Turingtrader
The Open-Source Backtesting Engine/ Market Simulator by Bertram Solutions.
Stars: ✭ 132 (-24.14%)
Mutual labels:  finance, quant
Redtorch
Java开源量化交易开发框架
Stars: ✭ 528 (+203.45%)
Mutual labels:  finance, quant
Akshare
AKShare is an elegant and simple financial data interface library for Python, built for human beings! 开源财经数据接口库
Stars: ✭ 4,334 (+2390.8%)
Mutual labels:  finance, quant
IBATS HuobiTrader old
【停止维护】新版本更新已迁移到 IBATS 项目组对应名称项目中。Auto Backtest Analysis Trade Framework 支持期货、数字货币进行量化交易,集成回测、分析、交易于一体。当前项目主要用于数字货币使用。
Stars: ✭ 21 (-87.93%)
Mutual labels:  quant, trader
Rqalpha
A extendable, replaceable Python algorithmic backtest && trading framework supporting multiple securities
Stars: ✭ 4,425 (+2443.1%)
Mutual labels:  finance, quant
Qlib Server
Qlib-Server is the data server system for Qlib. It enable Qlib to run in online mode. Under online mode, the data will be deployed as a shared data service. The data and their cache will be shared by all the clients. The data retrieval performance is expected to be improved due to a higher rate of cache hits. It will consume less disk space, too.
Stars: ✭ 81 (-53.45%)
Mutual labels:  finance, quant
GOAi
No description or website provided.
Stars: ✭ 57 (-67.24%)
Mutual labels:  finance, quant
Awesome Quant
中国的Quant相关资源索引
Stars: ✭ 2,529 (+1353.45%)
Mutual labels:  finance, quant
Quant Notes
Quantitative Interview Preparation Guide, updated version here ==>
Stars: ✭ 180 (+3.45%)
Mutual labels:  finance, quant
Thstrader
量化交易。同花顺免费模拟炒股软件客户端的python API。(Python3)
Stars: ✭ 311 (+78.74%)
Mutual labels:  finance, quant
LiuAlgoTrader
Framework for algorithmic trading
Stars: ✭ 514 (+195.4%)
Mutual labels:  trade, trader
Qlnet
QLNet C# Library
Stars: ✭ 252 (+44.83%)
Mutual labels:  finance, quant
Quantdom
Python-based framework for backtesting trading strategies & analyzing financial markets [GUI ]
Stars: ✭ 449 (+158.05%)
Mutual labels:  finance, quant
Financial Machine Learning
A curated list of practical financial machine learning tools and applications.
Stars: ✭ 2,172 (+1148.28%)
Mutual labels:  finance, quant
Awesome Quant
A curated list of insanely awesome libraries, packages and resources for Quants (Quantitative Finance)
Stars: ✭ 8,205 (+4615.52%)
Mutual labels:  finance, quant
pinance
Python module(s) to get stock data, options data and news.
Stars: ✭ 70 (-59.77%)
Mutual labels:  finance, trade
akshare
AKShare is an elegant and simple financial data interface library for Python, built for human beings! 开源财经数据接口库
Stars: ✭ 5,155 (+2862.64%)
Mutual labels:  finance, quant
Py Market Profile
A library to calculate Market Profile (aka Volume Profile) for financial data from a Pandas DataFrame.
Stars: ✭ 153 (-12.07%)
Mutual labels:  finance, quant
Vnpy
基于Python的开源量化交易平台开发框架
Stars: ✭ 17,054 (+9701.15%)
Mutual labels:  finance, quant

DeltaTrader

py37 version

DeltaTrader,致力于打造一个极简好用的程序化交易框架,便于个人投资者优化自己的交易系统。

主要包含4大功能:获取行情数据(data)、创建交易策略(strategy)、计算评估指标并完成回测(backtest),以及模拟实盘交易(trader)的部分。

合作招募

有意向重构or进行功能优化的,欢迎合作,微信:DeltaF_

简介

DeltaTrader是一个开源的量化交易接口,实现自动交易从未那么简单。

使用不到10行代码,你就可以获取任意A股数据,并实现自动化交易。

安装

可以通过clone该项目,实现引用。

简单入门实例

有了DeltaTrader,如果你想要获取股票数据,只需要这样:

import data.stock as st

data = st.get_single_price(code='000001.XSHE',
                           time_freq='daily',
                           start_date='2021-01-01',
                           end_date='2021-02-01')

数据导出

将数据导出为.csv格式:

import data.stock as st

data = st.get_single_price(code='000001.XSHE')

st.export_data(data=data, filename='000001.XSHE', type='price')

功能模块

  • 行情数据:目前提供2中数据源获取方式(JQData数据接口、财经网站爬虫)
  • 策略模型
  • 自动化交易

参与作者

  • deltaf: 构架及维护Python3版本
  • ACE:实时爬取财经网站股票行情数据

(待添加)

问题和建议

如果有什么问题或者建议都可以在这里和我讨论

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].