Home

Awesome

Research trading

summary:

Description

This repository regroups sources about Medium article(How to make profits in cryptocurrency trading with machine learning).

Python3.5 environment for datasciences.

Install

Requirements:

Run :

make

more informations about Makefile commands in the documentation section

Open your browser and visit the link localhost:8888.

The notebook used is src/Financial_presentation.ipynb.

Notebook

You have to know 3 tips for this notebook:

  1. The dataset is not in the repository.

The size of this file is too big to be uploaded on Github.

You can create your own dataset with this 'data crawler'

  1. The function get_data() is not implemented.
The object construct by this function must have this format:
  [
    {
      "name": "Your market name (ex. BTC-NEO)",
      "data": "Pandas dataframe of the market(with a chronological order)"
    },
  ]
example:

  [ {"name":"BTC-ETH", "data":<class 'pandas.core.frame.DataFrame'>} ]
  1. Data format:
indexaskbase_volumebiddatehighidid_botlastlowmarketNamemoy_prev_dayopen_buy_ordersopen_sell_ordersvolume
intintfloatintstrintintintintintstrintintintfloat
0720.61017702018-04-04 04:30:3072159742427268BTC-2GIVE69113979869022.0

This dataset was collected with this software : Data crawler

Only features listed in the "labelisation_features_name" (settings dictionary) are used to your model.

References

Makefile commands available:

commands namedescription
make1. down each service
2. build basic project
3. run project
make build_up1. build basic project
2. run project
make buildbuild basic project.
make uprun project
make downdown project
make pslist container
make logsdisplay all platform logs

Documentation: