How do I import data from memory?
I already have it in a list.
Don't want to write it out to file/csv, nor want to use huge panda lib.
[
(datetime_obj, close_price_float),
(datetime_obj, close_price_float),
(datetime_obj, close_price_float),
]
Cheers