From 73ad3b4c853e4f9452065efb0c865c9400e8965b Mon Sep 17 00:00:00 2001 From: Janne Sinivirta Date: Wed, 20 Sep 2017 08:06:10 -0700 Subject: [PATCH 1/4] Updated README.md --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1569eabea..2756a84d6 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![Build Status](https://travis-ci.org/gcarq/freqtrade.svg?branch=develop)](https://travis-ci.org/gcarq/freqtrade) Simple High frequency trading bot for crypto currencies. -Currently supported exchanges: bittrex, poloniex (partly implemented) +Currently supports trading on Bittrex exchange. This software is for educational purposes only. Don't risk money which you are afraid to lose. @@ -75,3 +75,11 @@ $ cd freqtrade $ docker build -t freqtrade . $ docker run --rm -it freqtrade ``` + +#### Contributing + +Feel like our bot is missing a feature? We welcome your pull requests! Few pointers for contributions: + +- Create your PR against the `develop` branch, not `master`. +- New features need to contain unit tests. +- If you are unsure, discuss the feature in a (issue)[https://github.com/gcarq/freqtrade/issues] before a PR. From 72432c1285f28580377426cb05ace809a35582ab Mon Sep 17 00:00:00 2001 From: Janne Sinivirta Date: Thu, 21 Sep 2017 09:08:13 -0700 Subject: [PATCH 2/4] Fix link markup for issues --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2756a84d6..228242ac2 100644 --- a/README.md +++ b/README.md @@ -82,4 +82,4 @@ Feel like our bot is missing a feature? We welcome your pull requests! Few point - Create your PR against the `develop` branch, not `master`. - New features need to contain unit tests. -- If you are unsure, discuss the feature in a (issue)[https://github.com/gcarq/freqtrade/issues] before a PR. +- If you are unsure, discuss the feature in a [issue](https://github.com/gcarq/freqtrade/issues) before a PR. From 775414d494a6e2af6a92bcc2f6325cdb1b021bc5 Mon Sep 17 00:00:00 2001 From: gcarq Date: Thu, 28 Sep 2017 19:00:42 +0200 Subject: [PATCH 3/4] add slack invite link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 228242ac2..64fe1f15a 100644 --- a/README.md +++ b/README.md @@ -82,4 +82,4 @@ Feel like our bot is missing a feature? We welcome your pull requests! Few point - Create your PR against the `develop` branch, not `master`. - New features need to contain unit tests. -- If you are unsure, discuss the feature in a [issue](https://github.com/gcarq/freqtrade/issues) before a PR. +- If you are unsure, discuss the feature on [slack](https://join.slack.com/t/highfrequencybot/shared_invite/enQtMjQ5NTM0OTYzMzY3LWMxYzE3M2MxNDdjMGM3ZTYwNzFjMGIwZGRjNTc3ZGU3MGE3NzdmZGMwNmU3NDM5ZTNmM2Y3NjRiNzk4NmM4OGE) or in a [issue](https://github.com/gcarq/freqtrade/issues) before a PR. From d416aba95e4a2f9eb5ae01b1bba980ff220e8f49 Mon Sep 17 00:00:00 2001 From: gcarq Date: Thu, 28 Sep 2017 19:01:02 +0200 Subject: [PATCH 4/4] add setup tutorial (closes #40) --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 64fe1f15a..0de4fbc75 100644 --- a/README.md +++ b/README.md @@ -63,6 +63,8 @@ $ pip install -r requirements.txt $ ./main.py ``` +There is also an [article](https://www.sales4k.com/blockchain/high-frequency-trading-bot-tutorial/) about how to setup the bot (thanks [@gurghet](https://github.com/gurghet)). + #### Execute tests ```