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

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