From c9226a329ca51c046d61361ab7c285a411aaa3d8 Mon Sep 17 00:00:00 2001 From: Janne Sinivirta Date: Fri, 29 Sep 2017 09:33:40 +0300 Subject: [PATCH] adjust roi and stop loss for backtesting --- test/test_backtesting.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/test/test_backtesting.py b/test/test_backtesting.py index ad25e17a8..1bd7fed54 100644 --- a/test/test_backtesting.py +++ b/test/test_backtesting.py @@ -22,11 +22,12 @@ class TestMain(unittest.TestCase): pairs = ['btc-neo', 'btc-eth', 'btc-omg', 'btc-edg', 'btc-pay', 'btc-pivx', 'btc-qtum', 'btc-mtl', 'btc-etc', 'btc-ltc'] conf = { "minimal_roi": { - "2880": 0.005, - "720": 0.01, - "0": 0.02 + "60": 0.0, + "40": 0.01, + "20": 0.02, + "0": 0.03 }, - "stoploss": -0.10 + "stoploss": -0.40 } @classmethod