Merge branch 'develop' into stoploss_on_exchange

This commit is contained in:
misagh
2018-11-22 09:39:01 +01:00
32 changed files with 908 additions and 227 deletions

View File

@@ -75,6 +75,13 @@ class IStrategy(ABC):
# associated ticker interval
ticker_interval: str
# Optional order types
order_types: Dict = {
'buy': 'limit',
'sell': 'limit',
'stoploss': 'limit'
}
# run "populate_indicators" only for new candle
process_only_new_candles: bool = False