Merge branch 'buy_reasons' of github.com:froggleston/freqtrade into buy_reasons
This commit is contained in:
commit
c59209a01a
@ -1,5 +1,4 @@
|
||||
import logging
|
||||
import os
|
||||
from pathlib import Path
|
||||
from typing import List, Optional
|
||||
|
||||
@ -19,14 +18,11 @@ def _load_signal_candles(backtest_dir: Path):
|
||||
|
||||
if backtest_dir.is_dir():
|
||||
scpf = Path(backtest_dir,
|
||||
os.path.splitext(
|
||||
get_latest_backtest_filename(backtest_dir))[0] + "_signals.pkl"
|
||||
Path(get_latest_backtest_filename(backtest_dir)).stem + "_signals.pkl"
|
||||
)
|
||||
else:
|
||||
scpf = Path(os.path.splitext(
|
||||
get_latest_backtest_filename(backtest_dir))[0] + "_signals.pkl"
|
||||
)
|
||||
|
||||
scpf = Path(Path(get_latest_backtest_filename(backtest_dir)).stem + "_signals.pkl")
|
||||
print(scpf)
|
||||
try:
|
||||
scp = open(scpf, "rb")
|
||||
signal_candles = joblib.load(scp)
|
||||
|
@ -1385,8 +1385,6 @@ def test_api_strategies(botclient):
|
||||
|
||||
assert_response(rc)
|
||||
|
||||
print(rc.json())
|
||||
|
||||
assert rc.json() == {'strategies': [
|
||||
'HyperoptableStrategy',
|
||||
'InformativeDecoratorTest',
|
||||
|
@ -144,7 +144,6 @@ class StrategyTestV3(IStrategy):
|
||||
(dataframe['plus_di'] > self.buy_plusdi.value)
|
||||
),
|
||||
'enter_long'] = 1
|
||||
|
||||
dataframe.loc[
|
||||
(
|
||||
qtpylib.crossed_below(dataframe['rsi'], self.sell_rsi.value)
|
||||
|
Loading…
Reference in New Issue
Block a user