fixed typo in forex algorithm

This commit is contained in:
Jing Wu
2017-09-15 00:28:46 -04:00
parent 86e1d13e03
commit 4bc154ff2f
@@ -54,4 +54,4 @@ class BasicTemplateForexAlgorithm(QCAlgorithm):
def OnData(self, data):
# Print to console to verify that data is coming in
for key in data.Keys:
self.Log(str(key.Value) + ": " + str(data.Time) + " > " + str(i[key].Value))
self.Log(str(key.Value) + ": " + str(data.Time) + " > " + str(data[key].Value))