From 85146cd7b85cbc26d115941dc1e8ce98bba4c032 Mon Sep 17 00:00:00 2001 From: Kaiya Date: Wed, 19 Apr 2023 21:20:43 +0800 Subject: [PATCH] Fix typo --- backtrader/order.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backtrader/order.py b/backtrader/order.py index c0b8ad222..ecf5aa286 100644 --- a/backtrader/order.py +++ b/backtrader/order.py @@ -447,7 +447,7 @@ def issell(self): return self.ordtype == self.Sell def setposition(self, position): - '''Receives the current position for the asset and stotres it''' + '''Receives the current position for the asset and stores it''' self.position = position def submit(self, broker=None):