stable/freqtrade/__init__.py
Samuel Husso e1322b75a9 Freqtrade 0.16.1 release
Note. This is the last release that uses our own bittrex implementation
      for trading. After this ccxt library will be taken into use which
      will offer the needed exchanges (bittrex/binance)
2018-05-12 09:50:01 +03:00

17 lines
409 B
Python

""" FreqTrade bot """
__version__ = '0.16.1'
class DependencyException(BaseException):
"""
Indicates that a assumed dependency is not met.
This could happen when there is currently not enough money on the account.
"""
class OperationalException(BaseException):
"""
Requires manual intervention.
This happens when an exchange returns an unexpected error during runtime.
"""