code block instructions. removed extra packages

This commit is contained in:
Jonathan Raviotta 2019-08-09 17:24:17 -04:00
parent dd35ba5e81
commit 8eb39178ea
2 changed files with 4 additions and 3 deletions

View File

@ -42,6 +42,9 @@ import os
from freqtrade.data.history import load_pair_history
from freqtrade.resolvers import StrategyResolver
# You can override strategy settings as demonstrated below.
# Customize these according to your needs.
# Define some constants
ticker_interval = "5m"
# Name of the strategy class
@ -66,7 +69,7 @@ bt_data = load_pair_history(datadir=Path(data_location),
pair=pair)
# Confirm success
print("Loaded " + str(len(bt_data)) + f" rows of data for {pair} from {data_location}")
print(f"Loaded {len(bt_data)} rows of data for {pair} from {data_location}")
```
### Load and run strategy

View File

@ -29,8 +29,6 @@ jupyter = [
'jupyter',
'nbstripout',
'ipykernel',
'isort',
'yapf',
]
all_extra = api + plot + develop + jupyter