I currently am having trouble trying to get my "embarrassingly parallel" backtesting code converted to a code that will do parallel processing.
# Code Start
input 1 = [AAPL, GOOG, IBM, XOM]
alloc = []
for i in range(0,10):
for j in range(0,10):
for k in range(0,10):
for m in range(0,10):
if...