From fe8b296cfffc659e25e251ce5fd7105fa168fd64 Mon Sep 17 00:00:00 2001 From: Victor Wong <1448407+ChairmanMeow@users.noreply.github.com> Date: Mon, 25 May 2020 14:38:24 -0700 Subject: [PATCH] Update README.rst wrong parameter name. It should be 'lookback' instead of 'window'. --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 24f48df..e26a7a9 100644 --- a/README.rst +++ b/README.rst @@ -141,7 +141,7 @@ While the Blotter running in the background, write and execute your algorithm: def on_bar(self, instrument): # get instrument history - bars = instrument.get_bars(window=100) + bars = instrument.get_bars(lookback=100) # or get all instruments history # bars = self.bars[-20:]