From 2e4934653306ca5e414f56764a3e7f3010813159 Mon Sep 17 00:00:00 2001 From: tim Date: Sun, 23 Feb 2025 10:25:14 -0400 Subject: [PATCH] allocationText fix --- src/charts/ordershapes.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/charts/ordershapes.js b/src/charts/ordershapes.js index 8b8d8c0..574804f 100644 --- a/src/charts/ordershapes.js +++ b/src/charts/ordershapes.js @@ -122,7 +122,7 @@ class TrancheShapes { // console.log('hline', price) const model = { price, breakout, color, extraText, textLocation, - allocation, maxAllocation, amount, amountSymbol, + allocation, maxAllocation, amount, amountSymbol, buy, } const s = new HLine(model, null, null, null, true) this.shapes.push(s) @@ -146,7 +146,7 @@ class TrancheShapes { extendLeft: t.startTime === DISTANT_PAST, extendRight: t.endTime === DISTANT_FUTURE, breakout, color, extraText, textLocation, - allocation, maxAllocation, amount, amountSymbol, + allocation, maxAllocation, amount, amountSymbol, buy, } const s = new DLine(model, null, null, null, true) this.shapes.push(s)