|
Percent change, you mean you want the equivalent from the original CMC JSON: "percent_change_1h": "XXX",
"percent_change_24h": "XX",
"percent_change_7d": "XX",
We can add that, but we want to use fixed points in times, to avoid floating periods comparison.Here is an example for the change in 1h: it is 10:45 AM, so do the average for 10AM, do the average for 9AM, see the percentage change. A bad method is to average from 10:45AM to 9:45AM, average from 9:45AM to 8:45AM then report the percentage change, because if there was a big change at 9:30, and just one, then the coin is stable, it will have decaying effect on the percentage change. You will see it moving, while the coin has stabilized! To me, that's wrong. Coinmarketcap was doing the latter. We can support that, but you should consider switching. |