maxim5 / time-series-machine-learning

Machine learning models for time series analysis
Apache License 2.0
369 stars 103 forks source link

can I use my own dataset? #4

Open huazai665 opened 6 years ago

huazai665 commented 6 years ago

How to use my own dataset?

maxim5 commented 6 years ago

@huazai665 Sure! You can plug in in different places depending on how different your data is from poloniex data. The simplest option is to transform your market data to the following csv (filling the missing columns with dummy values):

date,high,low,open,close,volume,quoteVolume,weightedAverage

If you can't do this, you will have to write the code to transform your input to pandas data-frame. All methods are independent from the data format, they just see the numbers, so it should work as well.

huazai665 commented 6 years ago

@maxim5 Thanks