Skip to content

Commit

Permalink
fixed another instance of Path in docs and nb
Browse files Browse the repository at this point in the history
  • Loading branch information
jraviotta committed Aug 9, 2019
1 parent ccf3c69 commit 51d59e6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/data-analysis.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions user_data/notebooks/analysis_example.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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\""
Expand Down

0 comments on commit 51d59e6

Please sign in to comment.