fixed another instance of Path in docs and nb

This commit is contained in:
Jonathan Raviotta
2019-08-09 11:36:53 -04:00
parent ccf3c69874
commit 51d59e673b
2 changed files with 4 additions and 4 deletions

View File

@@ -46,9 +46,9 @@ strategy_name = 'NewStrategy'
# Path to user data
user_data_dir = 'user_data'
# Location of the strategy
strategy_location = os.path.join(user_data_dir, 'strategies')
strategy_location = Path(user_data_dir, 'strategies')
# Location of the data
data_location = os.path.join(user_data_dir, 'data', 'binance')
data_location = Path(user_data_dir, 'data', 'binance')
# Pair to analyze
# Only use one pair here
pair = "BTC_USDT"