removed unused profit_abs

This commit is contained in:
Yazeed Al Oyoun 2020-01-31 18:34:34 +01:00
parent 56af3c929c
commit 183194947c

View File

@ -40,7 +40,7 @@ class SharpeHyperOptLossDaily(IHyperOptLoss):
sum_daily = (
results.resample("D", on="close_time").agg(
{"profit_percent": sum, "profit_abs": sum}
{"profit_percent": sum}
)
* 100.0
)