Skip to content

Latest commit

Β 

History

History
75 lines (48 loc) Β· 2.52 KB

File metadata and controls

75 lines (48 loc) Β· 2.52 KB

DeltaTrader

δΈ­ζ–‡ | English

version py37

Early tutorial/demo project: walks through the full quantitative workflow with off-the-shelf Python libraries (data β†’ strategy β†’ backtest β†’ trader). For production use, see the Delta ecosystem below.

πŸŽ“ Official Tutorial

πŸš€ DeltaFQ AI Quant Ecosystem (Next Step)

Open-source quant stack from research and backtest to live trading; lightweight, extensible, for individuals and teams.

  • deltafq: Pure native quant framework, minimal dependencies, full pipeline from data, strategy, backtest to live.
  • deltafstation: Quant trading platform built on deltafq; data services, strategy management, and trading connectivity, with sim and live support.

πŸ“¦ Installation

git clone https://github.com/Delta-F/DeltaTrader.git

✨ Core Features

  • πŸ“Š Market Data - JQData API and web scraping
  • βš™οΈ Strategy Models - Rule-based strategy creation
  • πŸ€– Automated Trading - Simulated live trading

⚑ Quick Start

Get stock price data:

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')

Export to CSV:

import data.stock as st

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

🀝 Contributing

πŸ“„ License

MIT License.