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 # Path to user data
user_data_dir = 'user_data' user_data_dir = 'user_data'
# Location of the strategy # Location of the strategy
strategy_location = os.path.join(user_data_dir, 'strategies') strategy_location = Path(user_data_dir, 'strategies')
# Location of the data # 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 # Pair to analyze
# Only use one pair here # Only use one pair here
pair = "BTC_USDT" pair = "BTC_USDT"

View File

@ -115,9 +115,9 @@
"# Path to user data\n", "# Path to user data\n",
"user_data_dir = 'user_data'\n", "user_data_dir = 'user_data'\n",
"# Location of the strategy\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", "# 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", "# Pair to analyze \n",
"# Only use one pair here\n", "# Only use one pair here\n",
"pair = \"BTC_USDT\"" "pair = \"BTC_USDT\""