From ae0d5c88de81e33c4843d6b53e34e5b36dfc4735 Mon Sep 17 00:00:00 2001 From: femtotrader Date: Wed, 22 Jun 2016 13:58:28 +0200 Subject: [PATCH] Fix indent issue --- examples/test_strategy_backtest.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/examples/test_strategy_backtest.py b/examples/test_strategy_backtest.py index 5063a1ca..909f5934 100644 --- a/examples/test_strategy_backtest.py +++ b/examples/test_strategy_backtest.py @@ -45,13 +45,13 @@ position_sizer, risk_manager ) - # Use the TestCompliance component - compliance = TestCompliance(); + # Use the TestCompliance component + compliance = TestCompliance() - # Use a simulated IB Execution Handler - execution_handler = IBSimulatedExecutionHandler( - events_queue, price_handler, compliance - ) + # Use a simulated IB Execution Handler + execution_handler = IBSimulatedExecutionHandler( + events_queue, price_handler, compliance + ) # Use the default Statistics statistics = SimpleStatistics(portfolio_handler)