Hello,

I am new to the platform and I am importing one of my favorite strategy that lays on a .csv file (4.5 MB): I could not open it from the project then I try to open it from my personnal server by doing these lines:

file = self.Download("http://my_ip_address/share/file.csv")
self.combination_info = pd.read_csv(file)

The strategy crashes and give me this error: During the algorithm initialization, the following exception has occurred: [Errno 36] File name too long: '[the whole content of my file]'

How can I use my .csv in my project with out any issue with QuantConnect?