Merge pull request #817 from gcarq/feature/gdax

Enable Backtesting with GDAX and allow trading with EUR/USD
This commit is contained in:
Janne Sinivirta
2018-06-03 17:49:20 +03:00
committed by GitHub
5 changed files with 103 additions and 5 deletions

View File

@@ -37,7 +37,7 @@ CONF_SCHEMA = {
'properties': {
'max_open_trades': {'type': 'integer', 'minimum': 0},
'ticker_interval': {'type': 'string', 'enum': list(TICKER_INTERVAL_MINUTES.keys())},
'stake_currency': {'type': 'string', 'enum': ['BTC', 'ETH', 'USDT']},
'stake_currency': {'type': 'string', 'enum': ['BTC', 'ETH', 'USDT', 'EUR', 'USD']},
'stake_amount': {'type': 'number', 'minimum': 0.0005},
'fiat_display_currency': {'type': 'string', 'enum': SUPPORTED_FIAT},
'dry_run': {'type': 'boolean'},