From e2598eb23bb2e5fb1cd463b2e3ab8d048e3a85da Mon Sep 17 00:00:00 2001 From: Peter Dekkers Date: Fri, 13 Dec 2024 14:30:02 +0100 Subject: [PATCH] fixed space --- roboquant/order.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roboquant/order.py b/roboquant/order.py index e0b1d5c..1506daf 100644 --- a/roboquant/order.py +++ b/roboquant/order.py @@ -12,7 +12,7 @@ class Order: """ A trading order for an asset. Each order has a `size` and a `limit` price. - Order with a positive `size` are buy orders and with a negative `size` are sell orders. + Order with a positive `size` are buy orders and with a negative `size` are sell orders. The `gtd` (good till date) is optional and if not set implies the order is valid for ever. The `info` will hold any abritrary properties (kwargs) set on the order.