This is the current code I'm attempting to use in order to loop through a "list" of tickers to load the corresponding file. However, Matlab doesn't seem to like to accept separate strings. I'm not quite sure how Matlab functions yet. However, it is clear that it does not handle text as easily as Python.
Stocks = {'JPM','KO','GOOG','PG'};
for Stock = Stocks;
stockData.(Stock) = load(Stock '.csv');
end