Share a Hello,

I am trying to obtain the moment-in-time equity while a back test is running.  I followed the instructions outlined here.

The Python example in the instructs are:

value = self.RuntimeStatistic[name]

The directions have a typo, and it should have an “s” at the end (RuntimeStatistics).

But, while the back test is running, RuntimeStatistics dictionary doesn't contain any entries.  self.RuntimeStatistic.Count=0.

I am attempting to use the code:

value = self.RuntimeStatistic["Equity"]

Am I doing this wrong?