Skip to content

Commit

Permalink
Release alpha version 0.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Bouquet committed May 5, 2018
1 parent 8d67355 commit 9cd835a
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CryptoBot [![Codacy Badge](https://api.codacy.com/project/badge/Grade/c83a127c42ba4a389ca86a92fba7c53c)](https://www.codacy.com/app/paul.bouquet/CryptoBot?utm_source=github.com&utm_medium=referral&utm_content=Trading-Bot/CryptoBot&utm_campaign=Badge_Grade) [![Build Status](https://api.travis-ci.org/Trading-Bot/CryptoBot.svg?branch=dev)](https://travis-ci.org/Trading-Bot/CryptoBot) [![Coverage Status](https://coveralls.io/repos/github/Trading-Bot/CryptoBot/badge.svg?branch=dev)](https://coveralls.io/github/Trading-Bot/CryptoBot?branch=dev)

#### Version 0.0.9-alpha ([changelog](https://github.com/Trading-Bot/CryptoBot/tree/alpha/docs/CHANGELOG.md))
#### Version 0.0.10-alpha ([changelog](https://github.com/Trading-Bot/CryptoBot/tree/alpha/docs/CHANGELOG.md))

## Disclaimer
This software is for educational purposes only. Do not risk money which
Expand Down
5 changes: 2 additions & 3 deletions config/cst.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import operator
from enum import Enum

SHORT_VERSION = "0.0.9"
REV_VERSION = "5"
SHORT_VERSION = "0.0.10"
REV_VERSION = "0"
VERSION_DEV_PHASE = "alpha"
VERSION = "{0}-{1}".format(SHORT_VERSION, VERSION_DEV_PHASE)
LONG_VERSION = "{0}_{1}-{2}".format(SHORT_VERSION, REV_VERSION, VERSION_DEV_PHASE)
Expand Down
37 changes: 37 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,40 @@
Changelog for 0.0.10
====================
*Released date : May 5 2018*

# Concerned issues :
#63 Calculate evaluator divergence note
#86 [CI] Implement third party
#117 auto adapt symbol configuration for backtesting
#119 TA test architecture
#120 [Backtesting] Test Zipline lib implementation
#121 added sudden pump data and described bank data
#122 added test_reaction_to_over_bought_then_dip to all TA
#123 added rise after over-sold test for all TA
#124 added flat trend tests on all TA
#125 [Notification] Double notification when an order linked is cancelled
#127 Add in price graph and out price graph indicator list plot
#126 [Order] Too much canceled orders when RealTime Evaluators are created
#128 [Notification] No notification of profitability
#129 [Web] Create web interface prototype

# New features :
- Web interface prototype
- Full TA patterns tests
- Data Visualiser
- Performance Analyser
- Bot starter with options
- Multiple new tests to improve code coverage

# Bug fix :
- Fix risk logic with market orders
- Fix notifications : only concerned symbol
- Fix default config
- Fix datavisualiser style
- Fix RedditEvaluator overriden method param names
- Fix portfolio profitability notification


Changelog for 0.0.9
====================
*Released date : Apr 30 2018*
Expand Down

0 comments on commit 9cd835a

Please sign in to comment.