time-series-machine-learning icon indicating copy to clipboard operation
time-series-machine-learning copied to clipboard

can I use my own dataset?

Open huazai665 opened this issue 7 years ago • 2 comments

How to use my own dataset?

huazai665 avatar Aug 23 '18 12:08 huazai665

@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.

maxim5 avatar Aug 28 '18 07:08 maxim5

@maxim5 Thanks

huazai665 avatar Aug 29 '18 02:08 huazai665