data by name.
referencing data by _name
when adding data I do have the attribute name
in this example well say name = SWK
with in the bt.feeds.GenericCSVData()
Now with in def __init__(self):
I am trying to call the data by name and can not seem to get it... IE
self.data_SWK.close
does not work... self.datas_SWK.close
does not work either.
referencing source data_NAME
line 109 ` - self.dataX_name
-> self.datas[X].name
. But this is for an analyzer, maybe its not possible any other place.
Maybe I am miss interpreting the documents.