Revert data-location section

This commit is contained in:
Matthias 2020-02-12 21:43:43 +01:00
parent 483cba453a
commit 2efa1c164f
2 changed files with 8 additions and 4 deletions

View File

@ -20,6 +20,8 @@ config = Configuration.from_files([])
config["ticker_interval"] = "5m" config["ticker_interval"] = "5m"
# Name of the strategy class # Name of the strategy class
config["strategy"] = "SampleStrategy" config["strategy"] = "SampleStrategy"
# Location of the data
data_location = Path(config['user_data_dir'], 'data', 'binance')
# Pair to analyze - Only use one pair here # Pair to analyze - Only use one pair here
pair = "BTC_USDT" pair = "BTC_USDT"
``` ```
@ -29,12 +31,12 @@ pair = "BTC_USDT"
# Load data using values set above # Load data using values set above
from freqtrade.data.history import load_pair_history from freqtrade.data.history import load_pair_history
candles = load_pair_history(datadir=config["datadir"], candles = load_pair_history(datadir=data_location,
timeframe=config["ticker_interval"], timeframe=config["ticker_interval"],
pair=pair) pair=pair)
# Confirm success # Confirm success
print("Loaded " + str(len(candles)) + f" rows of data for {pair} from {config['datadir']}") print("Loaded " + str(len(candles)) + f" rows of data for {pair} from {data_location}")
candles.head() candles.head()
``` ```

View File

@ -36,6 +36,8 @@
"config[\"ticker_interval\"] = \"5m\"\n", "config[\"ticker_interval\"] = \"5m\"\n",
"# Name of the strategy class\n", "# Name of the strategy class\n",
"config[\"strategy\"] = \"SampleStrategy\"\n", "config[\"strategy\"] = \"SampleStrategy\"\n",
"# Location of the data\n",
"data_location = Path(config['user_data_dir'], 'data', 'binance')\n",
"# Pair to analyze - Only use one pair here\n", "# Pair to analyze - Only use one pair here\n",
"pair = \"BTC_USDT\"" "pair = \"BTC_USDT\""
] ]
@ -49,12 +51,12 @@
"# Load data using values set above\n", "# Load data using values set above\n",
"from freqtrade.data.history import load_pair_history\n", "from freqtrade.data.history import load_pair_history\n",
"\n", "\n",
"candles = load_pair_history(datadir=config[\"datadir\"],\n", "candles = load_pair_history(datadir=data_location,\n",
" timeframe=config[\"ticker_interval\"],\n", " timeframe=config[\"ticker_interval\"],\n",
" pair=pair)\n", " pair=pair)\n",
"\n", "\n",
"# Confirm success\n", "# Confirm success\n",
"print(\"Loaded \" + str(len(candles)) + f\" rows of data for {pair} from {config['datadir']}\")\n", "print(\"Loaded \" + str(len(candles)) + f\" rows of data for {pair} from {data_location}\")\n",
"candles.head()" "candles.head()"
] ]
}, },