From e2488317192d47cf8cf276772d4e5a768ec46643 Mon Sep 17 00:00:00 2001 From: Frederic Fortier Date: Thu, 8 Feb 2018 00:27:56 -0500 Subject: [PATCH] BLD: adjusted sample algo --- catalyst/examples/mean_reversion_simple.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/catalyst/examples/mean_reversion_simple.py b/catalyst/examples/mean_reversion_simple.py index 3b94d925..81a3b182 100644 --- a/catalyst/examples/mean_reversion_simple.py +++ b/catalyst/examples/mean_reversion_simple.py @@ -38,7 +38,7 @@ def initialize(context): context.current_day = None context.RSI_OVERSOLD = 40 - context.RSI_OVERBOUGHT = 50 + context.RSI_OVERBOUGHT = 60 context.CANDLE_SIZE = '15T' context.start_time = time.time() @@ -257,7 +257,7 @@ if __name__ == '__main__': algo_namespace=NAMESPACE, base_currency='eth', live_graph=False, - simulate_orders=True, + simulate_orders=False, stats_output=None, # auth_aliases=dict(poloniex='auth2') )