Adapt documentation for timeframe

This commit is contained in:
Matthias
2019-11-02 20:34:06 +01:00
parent d801dec6aa
commit 334ac8b10c
3 changed files with 8 additions and 8 deletions

View File

@@ -26,7 +26,7 @@
"# Customize these according to your needs.\n",
"\n",
"# Define some constants\n",
"ticker_interval = \"5m\"\n",
"timeframe = \"5m\"\n",
"# Name of the strategy class\n",
"strategy_name = 'SampleStrategy'\n",
"# Path to user data\n",
@@ -49,7 +49,7 @@
"from freqtrade.data.history import load_pair_history\n",
"\n",
"candles = load_pair_history(datadir=data_location,\n",
" ticker_interval=ticker_interval,\n",
" timeframe=timeframe,\n",
" pair=pair)\n",
"\n",
"# Confirm success\n",