As mentioned in the title, is there a way of using only fetch_csv() and history() to get data from multiple columns in a csv file without use of batch_transform?
Since in the help doc, it states "Note: This function [batch_transform] is deprecated in favor of history and will stop working at some point in the future. Please start using history instead."
I have attached my current method (use of batch_transform), which seems to be what many shared algorithms are using.
Specifically, within handle data(), get_past_prices() calls batch_transform() to gather data from multiple columns in the csv, and merges the data with security prices obtained using history().