Update libraries and python 3.11 (#7856)

* Update python 3.11

* Update ARM foundation image and minor improvements
This commit is contained in:
Martin-Molinero
2024-03-26 12:57:56 -03:00
committed by GitHub
parent 78b49a1d11
commit 78647d3a1d
21 changed files with 465 additions and 504 deletions
@@ -49,7 +49,7 @@ class ObjectStoreExampleAlgorithm(QCAlgorithm):
history = pd.read_csv(StringIO(values), header=None, index_col=0, squeeze=True)
history.index = pd.to_datetime(history.index)
for time, close in history.iteritems():
for time, close in history.items():
self.SPY_Close.Update(time, close)
else:
@@ -59,7 +59,7 @@ class ObjectStoreExampleAlgorithm(QCAlgorithm):
# we're pulling the last year's worth of SPY daily trade bars to fee into our indicators
history = self.History(self.SPY, timedelta(365), Resolution.Daily).close.unstack(0).squeeze()
for time, close in history.iteritems():
for time, close in history.items():
self.SPY_Close.Update(time, close)
# save our warm up data so next time we don't need to issue the history request