Skip to main content

Automate and backtest on ohlcv data quickly

Project description

Fast Trade Python application

A library to do back-testing on currency data with generated strategies quickly and easily. The data comes from this project crypto-data.

Data

If you're looking for some data, here is roughly every minute of 2018 of every pair from binance. Here is the each file individually zipped and here is the entire directory zipped, with each file as a zip. If you have any questions, please email me at fast_trade (at) jedm.dev. I also have data every minute since December 2019 to now, shoot me an email if you'd like access.

Goals

  • run in less than 30s on average hardware
  • headless
  • extensible

Features

  • Extremely fast backtesting
  • ability to build complex strategies
  • ability to reproduce strategies since they are just a json file
  • can interface easily as an API, ex. put a web server in front and its an API

Install

pip install fast-trade

Or

python -m venv .fast_trade
source .fast_trade/bin/activate
pip install -r requirements.txt

Testing

python -m pytest

Available Indicators (graciously stolen from https://github.com/peerchemist/finta)

Output

The output its a tuple. The first object is a summary all the inputs and a summary of a performace of the model. It's all the information to run the simulation again. The second object is a Pandas Dataframe, which contains all of the data used in the simulation. This can be used to chart store.

Example output:

{
  "return_perc": 3.935,
  "mean_trade_len": "0 days 01:13:07.368421",
  "max_trade_held": "0 days 07:55:59",
  "min_trade_len": "0 days 00:07:59",
  "best_trade_perc": 5.979,
  "min_trade_perc": -3.144,
  "mean": 0.074,
  "num_trades": 58,
  "win_perc": 63.793,
  "loss_perc": 34.483,
  "equity_peak": 1098.39686619,
  "equity_final": 1044.52219673,
  "equity_peak_unit": 1098.39686619,
  "first_tic": "2018-05-01 00:00:03",
  "last_tic": "2018-05-03 23:57:03",
  "total_tics": 1081,
  "test_duration": "0:00:00.406570"
},
DataFrame(...)
)

Strategy

The real goal of this project is to get to the point where these strategies can be generated and tested quickly and then be easily iterated on.

Below is an example of a very simple strategey. Basically, indicators are used to build a list of indicators to look at which must all be true to produce an enter or exit status for that tick. This can use any of the indicators build_data_frame.py

{
   "name": "example",
   "chart_period": "4m",
   "start": "2018-05-01 00:00:00",
   "stop": "2018-05-04 00:00:00",
   "enter": [
     [
       "close",
       ">",
       "short"
     ],
     [
       "rsi",
       ">",
       30
     ]
   ],
   "exit": [
     [
       "close",
       "<",
       "long"
     ],
     [
       "rsi",
       "<",
       70
     ]
   ],
   "indicators": [
     {
       "name": "short",
       "func": "ta.zlema",
       "args": [
         7
       ],
       "df": "close"
     },
     {
       "name": "long",
       "func": "ta.zlema",
       "args": [
         150
       ],
       "df": "close"
     },
     {
       "name": "rsi",
       "func": "ta.rsi",
       "args": [
         14
       ],
       "df": "close"
     }
   ]
}

Indicators

      {
         "name": "short", # indicator name
         "func": "ta.zlema", # technical analysis function to be used
         "args": [12], # arguments to pass to the function
         "df": "close" # which column of the dataframe to look at
      }

Enter / Exit

   "enter": [ # all must be true to enter or exit
      [
         "close", # column of the dataframe to compare to
         ">", # logic to use to compare
         "short" # the name from the defined indicator
      ]
   ]

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

fast-trade-0.1.0.tar.gz (11.7 kB view details)

Uploaded Source

Built Distribution

fast_trade-0.1.0-py3-none-any.whl (10.4 kB view details)

Uploaded Python 3

File details

Details for the file fast-trade-0.1.0.tar.gz.

File metadata

  • Download URL: fast-trade-0.1.0.tar.gz
  • Upload date:
  • Size: 11.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.2

File hashes

Hashes for fast-trade-0.1.0.tar.gz
Algorithm Hash digest
SHA256 91fdb1cb3c976727139548521e70af2afb9414563b4f6eed44c461a99d61de16
MD5 af6b396728944c9d42dbb4c10011ab40
BLAKE2b-256 53af8d291be001d7b9018f687c5828543afda9c147c7d4f7c1f9bc4e9115a00d

See more details on using hashes here.

File details

Details for the file fast_trade-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: fast_trade-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 10.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.2

File hashes

Hashes for fast_trade-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b8d962543bcab5e7c78a3066738b3eb54674f12bdc24bb66db51bd6fcbae78a1
MD5 ffb2e47212088a31ecd927455e510aad
BLAKE2b-256 78a435842007b031dad92f0186db9dc72647d8e7ac39c15233d7f7795162e332

See more details on using hashes here.

Supported by

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