Hello,

In the past when making backtest plots using the standard self.Plot() call, it would display plot lines in a “first come, first serve" order. This made it easy to keep track of different values across different backtests as they were consistently presented.

For example:

self.Plot("Pricing", “midPrice”, “self.mid_price”)
self.Plot("Pricing", “highPrice”, “self.high_price”)
self.Plot("Pricing", “lowPrice”, “self.low_price”)

Would always render in that order. 

However, now the order appears to be random. It's hard to keep track of all the data between tests. This change occurred at the same time as the backtest results folder change. Even old backtests that were ran before the change now show plot lines in a random order. 

Thanks for any help!