Skip to content

Commit

Permalink
code block instructions. removed extra packages
Browse files Browse the repository at this point in the history
  • Loading branch information
jraviotta committed Aug 9, 2019
1 parent dd35ba5 commit 8eb3917
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 4 additions & 1 deletion docs/data-analysis.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 0 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@
'jupyter',
'nbstripout',
'ipykernel',
'isort',
'yapf',
]

all_extra = api + plot + develop + jupyter
Expand Down

0 comments on commit 8eb3917

Please sign in to comment.