binbot-charts 0.2.28 → 0.2.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -145,7 +145,7 @@ class Datafeed {
|
|
|
145
145
|
this.timescaleMarks.forEach(mark => {
|
|
146
146
|
let time = new Date(mark.time * 1000);
|
|
147
147
|
time.setHours(1, 0, 0, 0);
|
|
148
|
-
const roundFloor = time.getTime();
|
|
148
|
+
const roundFloor = time.getTime() / 1000;
|
|
149
149
|
mark.time = roundFloor;
|
|
150
150
|
timescaleMarks.push(mark);
|
|
151
151
|
});
|
package/package.json
CHANGED