Skip to main content

Out-of-box python tool and framework for quantitative trading and study

Project description

Hiquant

阅读此文档的中文版本

Hiquant is a quatitative trading framework and out-of-box toolset for assisting stock/fund investment.

Features

  • Data acquisition: fetch data from financial websites, including indices, stocks, funds, financial reports, history data, realtime data, etc.
  • Valuation analysis: extract key abstract info from financial reports like ROE, calculate PE/PB percentiles, find “cheap valuation” stocks, export to stock pool
  • Plot stock with indicators: plot k-line diagram of stocks with indicators, comparing earning curve of multiple indices or even multiple stocks
  • Strategy framework: implemented a strategy framework for backtesting, with sample code for demo purposes, and provides a command to create a new strategy from the template, which is convenient for users to write their own strategies
  • Simulated backtesting: Use historical market data, to simulate backtesting of one or more portfolio strategies, output data analysis of investment returns, and draw yield curves for comparison
  • Simulated realtime trading: Synchronize real-time market data, calculate trading decisions based on strategies, and send email notifications to remind users to trade
  • Multi markets: currently supports China, Hong Kong and United States market, will add support for markets in other countries if requested and data available
  • TODO: Automated trading: call the quantitative trading interface to realize automated trading (not yet implemented, planned)

Other features:

  • Evaluate funds: search and filter funds, calculate sharpe ratio and max drawdown, evaluate funds, comparing earning curve of multiple funds, comparing investment performance of fund managers

Hiquant system architecture

Installation

Please make sure your Python is v3.7 or above, as it's required by Matplotlib 3.4 for plottting.

python3 --version
python3 -m pip install hiquant

Or, clone from GitHub:

git clone https://github.com/floatinghotpot/hiquant.git
cd hiquant
python3 -m pip install -e .

Examples

  • Draw stock indicators and yield curve
hiquant stock AAPL -ma -macd

Draw stock

  • Draw trade signal of mixed indicators, holding time, and yield curve
hiquant stock AAPL -ma -macd -mix

Draw stock

  • Compare ROI of multiple stocks
hiquant stock plot AAPL GOOG AMZN -years=5 "-base=^IXIC,^GSPC"

Compore stocks

  • Backtrade with one portoflio Draw stock

  • Backtrade with multiple portoflios Draw stock

Command quick start

hiquant create myProj
cd myProj

hiquant index list us
hiquant stock list us

hiquant stock plot AAPL -ma -macd -kdj
hiquant stock plot AAPL -all
hiquant stock plot AAPL -wr -bias -mix

hiquant stock pool AAPL GOOG AMZN TSLA MSFT -out=stockpool/mystocks.csv

hiquant strategy create strategy/mystrategy.py
hiquant backtest strategy/mystrategy.py

hiquant trade create etc/myfund.conf
hiquant backtrade etc/myfund.conf
hiquant run etc/myfund.conf

Code quick start

import pandas as pd
import hiquant as hq

class MyStrategy( hq.BasicStrategy ):
    def __init__(self, fund):
        super().__init__(fund, __file__)
        self.max_stocks = 10
        self.max_weight = 1.2
        self.stop_loss = 1 + (-0.10)
        self.stop_earn = 1 + (+0.20)

    def select_targets(self):
        return ['AAPL', 'MSFT', 'AMZN', 'TSLA', '0700.HK']

    def gen_trade_signal(self, symbol, init_data = False):
        market = self.fund.market
        if init_data:
            df = market.get_daily(symbol)
        else:
            df = market.get_daily(symbol, end = market.current_date, count = 26+9)

        dif, dea, macd_hist = hq.MACD(df.close, fast=12, slow=26, signal=9)
        return pd.Series( hq.CROSS(dif, dea), index=df.index )

    def get_signal_comment(self, symbol, signal):
        return 'MACD golden cross' if (signal > 0) else 'MACD dead cross'

def init(fund):
    strategy = MyStrategy(fund)

if __name__ == '__main__':
    backtest_args = dict(
        #start_cash= 1000000.00,
        #date_start= hq.date_from_str('3 years ago'),
        #date_end= hq.date_from_str('yesterday'),
        #out_file= 'output/demo.png',
        #parallel= True,
        compare_index= '^GSPC',
    )
    hq.backtest_strategy( MyStrategy, **backtest_args )

Usage

Read following docs for more details:

Develop with Hiquant

Read this document on how to develop with Hiquant:

Credits

Great appreciate developers of following projects. This project is based on their great works: Pandas, Matplotlib, Mplfinance, Akshare, etc.

Thanks folloowing websites for providing data service: Sina, Legu, Yahoo, Nasdaq, etc.

Thanks the warm-hearted knowledge sharing on Zhihu and Baidu websites.

Disclaimer

This software and related codes are for research purposes only and do not constitute any investment advice.

If anyone invests money in actual investment based on this, please bear all risks by yourself.

This software is developed on Mac, and the examples in this document are written with Mac environment. They are similiar for Linux, but might be a little difference on Windows.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

hiquant-0.4.17.tar.gz (72.7 kB view details)

Uploaded Source

Built Distribution

hiquant-0.4.17-py3-none-any.whl (92.0 kB view details)

Uploaded Python 3

File details

Details for the file hiquant-0.4.17.tar.gz.

File metadata

  • Download URL: hiquant-0.4.17.tar.gz
  • Upload date:
  • Size: 72.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for hiquant-0.4.17.tar.gz
Algorithm Hash digest
SHA256 4ae70b5c14983d50942403bd4031cb47ec42b19e01dd641f09174befe15db217
MD5 e827f1709d5b7f18727134303ea94a68
BLAKE2b-256 9ed2569fe7ef8028149dc11600380b4ac240dadcac17144a26553b067d87807a

See more details on using hashes here.

File details

Details for the file hiquant-0.4.17-py3-none-any.whl.

File metadata

  • Download URL: hiquant-0.4.17-py3-none-any.whl
  • Upload date:
  • Size: 92.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for hiquant-0.4.17-py3-none-any.whl
Algorithm Hash digest
SHA256 04e3c4173c20effc0e41d2778c803ebb6f76af38d004d05c16f7d4413c8ec737
MD5 2b7c40b26d16f8072e750115b0182287
BLAKE2b-256 200dead7c5decc585e7c14a337c2c76bf7dfe1c5381b3a8f18efaa85fa2bc07d

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page