Hi all,

This platform is amazing and I'm excited to keep learning.

I'm struggling with a custom data problem, I commented in another thread, just posting here for more visability.

class QuandlFINRAData(PythonQuandl): def __init__(self): ## Rename the Quandl object column to the data we want, which is the 'ShortVolume' column ## of the CSV that our API call returns self.ValueColumnName = 'ShortVolume' qb = QuantBook() aapl = qb.AddEquity("AAPL").Symbol qb.AddData(QuandlFINRAData, 'FINRA/FNYX_AAPL', Resolution.Daily) history = qb.History(qb.Securities.Keys, 360, Resolution.Daily) print(history.head())

I can't seem to get the QuandleFinraData populating in my data frame.  I've been stuck on this for a few hours and any help would be much appreaciated!

Thank you,

Gurj