Open femtotrader opened 8 years ago
There is also a warning
qsforex/data/price.py:147: FutureWarning: sort(....) is deprecated, use sort_index(.....)
return pd.concat(self.pair_frames.values()).sort().iterrows()
I was getting this same error, femtotrader solution fixed it. Is there a PR with this fix already? I can submit one if needed.
I also found that the sort on line 146 does not work with pandas 0.20.1.
return pd.concat(self.pair_frames.values()).sort().iterrows()
should be updated to:
return pd.concat(self.pair_frames.values()).sort_index().iterrows()
According docstring
``` ?pd.read_csv
so in https://github.com/mhallsmoore/qsforex/blob/master/data/price.py#L140
should be replaced by