beta announcement

This commit is contained in:
tim
2024-10-30 13:55:25 -04:00
parent a3bfaa2b08
commit 4eb15355a6

View File

@@ -3,8 +3,7 @@
import {invokeCallback, mixin} from "@/common.js"; import {invokeCallback, mixin} from "@/common.js";
import {chart, createShape, deleteShapeId, dragging, draggingShapeIds, drawShape, widget} from "@/charts/chart.js"; import {chart, createShape, deleteShapeId, dragging, draggingShapeIds, drawShape, widget} from "@/charts/chart.js";
import Color from "color"; import Color from "color";
import {dirtyItems, dirtyPoints, nearestOhlcStart, pointsToTvOhlcStart} from "@/charts/chart-misc.js"; import {dirtyItems, dirtyPoints, nearestOhlcStart} from "@/charts/chart-misc.js";
import {readonly} from "vue";
import {computeInterceptSlope} from "@/misc.js"; import {computeInterceptSlope} from "@/misc.js";
@@ -613,6 +612,7 @@ export class DLine extends Line {
} }
/*
pointsToTvOhlcStart(points, periodSeconds = null) { pointsToTvOhlcStart(points, periodSeconds = null) {
if (points === null) return null if (points === null) return null
const [v,w] = points const [v,w] = points
@@ -627,4 +627,5 @@ export class DLine extends Line {
return {time, price} return {time, price}
}) })
} }
*/
} }