Attached is my project I am working on and as you can see in the log output. the rate of change percent is stored in a variable but it stores the first tickers ROCP as the variable and ignores the second ticker.

So the logs/output looks like this:

2017-11-01 13:30:00: -2.08548IBM

2017-11-01 13:30:00: -2.08548AAPL

but I need it to be:

2017-11-01 13:30:00: -2.08548IBM

2017-11-01 13:30:00: 1.45676AAPL

The numbers I used are not the actual ROCP.

 

I need this to work with 4-5 tickers, the variable is stored in the self.__change variable I made, It doesn't affect the algorithm because I need this logic to work first.