Hi,
I am trying to fetch a file as a list of stocks but also there is a column containing a single value for each stock I would like to use in the trading algo.
Such as (also in the Backtest):
symbol,Date,Value
AAPL,2015/10/01,1
MSFT,2015/10/31,2
EBAY,2015/11/01,3
The "Value" column is the one I would like to use with the list of stocks. But I was wondering if I could import that information as if I just use data.fetcher_assets, it returns a list of stocks without anything in the "Value" column.
Thank you for your help in advance!