Align columns for btanalysis loading

This commit is contained in:
Matthias
2020-01-02 09:51:47 +01:00
parent 6fbdd6bee9
commit 2c8e8d8ef6
2 changed files with 2 additions and 2 deletions

View File

@@ -47,7 +47,7 @@ def load_backtest_data(filename) -> pd.DataFrame:
utc=True,
infer_datetime_format=True
)
df['profitabs'] = df['close_rate'] - df['open_rate']
df['profit'] = df['close_rate'] - df['open_rate']
df = df.sort_values("open_time").reset_index(drop=True)
return df