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.

{
   "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.1.tar.gz (10.2 kB view details)

Uploaded Source

Built Distribution

fast_trade-0.1.1-py3-none-any.whl (9.4 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: fast-trade-0.1.1.tar.gz
  • Upload date:
  • Size: 10.2 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.45.0 CPython/3.8.2

File hashes

Hashes for fast-trade-0.1.1.tar.gz
Algorithm Hash digest
SHA256 1cb3ac8dd4aca9b1c95d2911e94320c3f04f362027c79b6f9fbaa25748baea5d
MD5 087dafa48d1589f1492e09d279c929a1
BLAKE2b-256 bbe01bcdd6aa1750e49db762ceabb0094eef3f6af4b2d58fe9f2423ab95e5a12

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fast_trade-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 9.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.45.0 CPython/3.8.2

File hashes

Hashes for fast_trade-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 da45af62cd0dd4080085f979ccad26111cf885a1c531e392172fedb9230d764f
MD5 7747dc51676618114875f19386c94a42
BLAKE2b-256 03ab0911bfd01d227ce2c62fc258c24e837745fb9a719d83f17527e3390a4519

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