mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
fixed another instance of Path in docs and nb
This commit is contained in:
parent
ccf3c69874
commit
51d59e673b
|
@ -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"
|
||||
|
|
|
@ -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\""
|
||||
|
|
Loading…
Reference in New Issue
Block a user