Skip to content

Releases: freqtrade/freqtrade

0.14.0

09 Nov 20:12
Compare
Choose a tag to compare

Features and Bugfixes

  • Sell amount equal to amount purchased (#22)
  • Use Decimal for profit calculation for a more precise floating point arithmetic
  • Account exchange fees (#56)
  • Lots of stability fixes and improvements
  • dry_run: Use in-memory database
  • Telegram: /status table: shows a compresensive status overview (#86)
  • Improved backtesting (#95)
  • Upgrade python bittrex to 0.2.0

Breaking Changes!

The database format has changed.

  • Please sell the coins for your open trades manually or use /forcesell <id> to sell them before upgrading! The new database file is tradesv3.sqlite.
  • dry_run uses an in-memory database, which gets deleted on every stop.

0.12.0

24 Oct 16:21
Compare
Choose a tag to compare

Features and Bugfixes

  • Upgrade dependencies (#67)
  • More efficient and flexible Docker builds (#71)
  • Small tweaks to strategy (#73)
  • Add script to download live data for backtesting (#70)
  • Add /help Telegram command (#77)
  • Use hyperopt to find optimal parameters for buy strategy (#76)
  • Lots of small improvements and fixes

0.11.0

10 Oct 16:14
Compare
Choose a tag to compare

Features and Bugfixes

  • show warning when bittrex returns empty data (#30)
  • fix bug where telegram wasn't optional (#41)
  • improved trading strategy for buy trigger (#44)
  • refactor project structure to make it packageable (#47)
  • fix whitelist vanishing bug (#50)
  • mock missing 3rd party calls for unittests (#53)
  • refactor exchange interface to make it easier to integrate new exchanges (#58)
  • use latest telegram library
  • switch to pytest
  • lots of other improvements and fixes

Breaking Changes

With this release the config.json format has changed, if you used a previous version upgrade to the new format (see config.json.example).
It is also recommended to start with a fresh database, because the dataformat has changed slightly. That means you have to sell all active open orders manually and rename/remove tradesv2.sqlite.

0.10.0

28 Sep 17:27
Compare
Choose a tag to compare
  • new buy strategy (#20)
  • drop poloniex support
  • use five min ticker
  • configurable bidding price (#26)
  • backtesting trading strategy (#29)
  • lots of minor improvements and fixes