owocki / pytrader
- понедельник, 28 марта 2016 г. в 03:12:13
Python
cryptocurrency trading robot
pytrader is a cryptocurrency trading robot that uses machine learning to predict price movements at confidence intervals, and sometimes execute trades. It is programmed to work on the poloniex.com cryptocurrency platform.
I (@owocki) built this as a side project in January / February 2016, as a practical means of getting some experience with machine learning, quantitative finance, and of course hopefully making some profit ;)
.
3/26/2016 - My test portfolio was initialized with a 1 BTC deposit, and after 2 months and 23,413 trades, exited with 0.955 BTC. The system paid 2.486 BTC in fees to poloniex. CALL TO ACTION -- Get this trader to profitability. A strategy is being fleshed out here.
pytrader uses pybrain and sklearn to make trade ( buy/sell/hold decisions ), and then acts upon them.
Supported classifiers are as follows:
["Nearest Neighbors", "Linear SVM", "RBF SVM", "Decision Tree",
"Random Forest", "AdaBoost", "Naive Bayes", "Linear Discriminant Analysis",
"Quadratic Discriminant Analysis"]
Here's an example of a Decision Tree classifier being used to make a buy (blue), sell (red), or hold(green) decision on the BTC_ETH pair.
and here's a Naive Bayes decision tree for the USDT_BTC pair
On both graphs, the x axis is a recent price movement, and the y axis is a previous price movement, the length of which is determined by a parameter called granularity. These graphs show only the last two price movements. The graphing library used is constrained by two dimensional space, but you could generate a classifier that acts upon n pricemovements ( n dimensional space ).
There are many many different parameters one could use to train a ClassifierTest. This problem space is enumerated by the management command predict_many_sk.py. For each permutation of parameters, a percent_correct value is generated against actual price movement data. Using this brute force methodology, we are able to discover which classifiers are up for the job of trading.
By testing and tuning various parameters to to the ClassifierTest, I was able to consistently predict buy/sell/hold movements between 55-65% of the time, depending upon the currency pair and parameters to the test.
In addition to using sklearn Classifiers, Pybrain Supervised Learning tools were used to predict price movement. This is represented in the data model as a PredictionTest, and the problem space is enumerated in predict_many_v2.py. By testing and tuning various parameters in the pybrain NN, I was able to consistently predict directional price movements around 55% of the time.
Administration of this tool is primarily done through the django admin.
There's a series of graphs in the admin that show trades, and portfolio profitability over time.
... and allow the graphical debugging of trade decisions ...
... and allow the tuning of PredictionTests
and ClassifierTests
...
by each of the native pybrain (Prediction Test) and sklearn (ClassiferTests) parameters ..
Once a NN or classifier is found that is better than what is being used, trade.py is updated with the most profitable configurations.
self.predictor_configs = [
{'type' : 'nn',
'name' : 'ETH / 5',
'symbol': 'BTC_ETH',
'weight' : 0.1,
'granularity' : granularity,
'datasetinputs': 5},
{'type' : 'nn',
'name' : 'ETH / 5',
'symbol': 'BTC_ETH',
'weight' : 0.1,
'granularity' : granularity,
'datasetinputs': 4},
{'type' : 'classifier',
'symbol': 'USDT_BTC',
'name' : 'AdaBoost',
'weight' : 0.1,
'granularity' : granularity,
'datasetinputs' : 2,
'minutes_back': 1000},
{'type' : 'classifier',
'symbol': 'USDT_BTC',
'name' : 'Naive Bayes',
'weight' : 0.1,
'granularity' : granularity,
'datasetinputs' : 2,
'minutes_back': 1000},
{'type' : 'classifier',
'symbol': 'BTC_ETH',
'name' : 'Naive Bayes',
'weight' : 2,
'granularity' : granularity * 3,
'datasetinputs' : 2,
'minutes_back': 1000},
]
trade.py is the system's always-running trading engine. At a high level, it creates & trains ClassifierTests and PredictionTests based upon the most profitable indicators. Once those Tests are trained, it runs a loop that makes trades based upon them if a certain confidence threshold is reached amongst its self.predictor_configs
.
Although I am able to predict price movements with some degree of accuracy that beats random, I was never able to generate a robot that traded profitably after fees. Especially after poloniex changed their fee structure
My test portfolio was initialized with a 1 BTC deposit, and after 2 months and 23,413 trades, exited with 0.955 BTC. The system paid 2.486 BTC in fees to poloniex.
The code is not perfect. This was a pre-product/market-fit side project. Please feel free to open an Issue if you do not understand something. CALL TO ACTION -- Get this trader to profitability. A strategy is being fleshed out here.
After you've cloned the repo, you'll want to create a local_settings.py file with the following information in it:
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
MAKE_TRADES=False
API_KEY="<POLO_API_KEY>"
API_SECRET="<POLO_SECRET>"
install your requirements
pip install -r requirements.txt
set up your database.. here are some sample DB configs (pleace in local_settings.py
):
#postgres
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
'NAME': 'trader', # Or path to database file if using sqlite3.
# The following settings are not used with sqlite3:
'USER': 'trader',
'PASSWORD': '<pw>',
'HOST': '127.0.0.1', # '127.0.0.1', # Empty for localhost through domain sockets or '127.0.0.1' for localhost through TCP.
'PORT': '', # '5124', # Set to empty string for default.
'ATOMIC_REQUESTS': True,
},
}
#sqllite
import os
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
_DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
}
}
run migration commands
./manage.py syncdb
./manage.py migrate
and then install the system crontab
crontab scripts/crontab.txt
... and your system is installed. Once enough Price
objects are stored in the database, you'll be able to begin training your NN / classifiers. (see Administration above ^^)
django.db.utils.DatabaseError: SSL SYSCALL error: EOF detected
(KO: the system was running out of memory. solved by adding swap space)/profit
analytics tools can analyze > 1 coin/optimize
analytics tools can analyze > 1 coin/optimize
analytics tools can classifier performance