From 22154f2337339749c7a3b4835fe7dddac01f21bf Mon Sep 17 00:00:00 2001 From: Frederic Fortier Date: Mon, 15 Jan 2018 23:03:01 -0500 Subject: [PATCH] DOC: code documentation --- catalyst/exchange/exchange_blotter.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/catalyst/exchange/exchange_blotter.py b/catalyst/exchange/exchange_blotter.py index c8e6c531..1250f605 100644 --- a/catalyst/exchange/exchange_blotter.py +++ b/catalyst/exchange/exchange_blotter.py @@ -209,7 +209,6 @@ class ExchangeBlotter(Blotter): log.debug('found open order: {}'.format(order.id)) transactions = exchange.process_order(order) - # TODO: not letting partial orders through because of calculation issues if transactions and order.status == ORDER_STATUS.FILLED: avg_price = np.average( a=[t.price for t in transactions], @@ -247,8 +246,6 @@ class ExchangeBlotter(Blotter): for order, txn in self.check_open_orders(): order.dt = txn.dt - - # TODO: is the commission already on the order object? transactions.append(txn) if not order.open: