Merge pull request #400 from gcarq/feature/custom_strategy

Allow custom strategy files
This commit is contained in:
Janne Sinivirta
2018-01-23 15:25:18 +02:00
committed by GitHub
26 changed files with 1464 additions and 434 deletions

View File

@@ -6,9 +6,10 @@ import os
from typing import Optional, List, Dict
from pandas import DataFrame
from freqtrade.exchange import get_ticker_history
from freqtrade.optimize.hyperopt_conf import hyperopt_optimize_conf
from freqtrade.analyze import populate_indicators, parse_ticker_dataframe
from freqtrade import misc
from user_data.hyperopt_conf import hyperopt_optimize_conf
logger = logging.getLogger(__name__)