attempt to remove outliers from chart data
This commit is contained in:
@@ -29,11 +29,11 @@ export const maxChartPrice = computed(() =>
|
|||||||
Math.max(
|
Math.max(
|
||||||
Math.max.apply(
|
Math.max.apply(
|
||||||
null,
|
null,
|
||||||
similarCalendarPriceChartData.value.map((d) => d.y)
|
similarCalendarPriceChartData.value.map((d) => d.y).slice(0, -2)
|
||||||
),
|
),
|
||||||
Math.max.apply(
|
Math.max.apply(
|
||||||
null,
|
null,
|
||||||
calendarExitPriceChartData.value.map((d) => d.y)
|
calendarExitPriceChartData.value.map((d) => d.y).slice(0, -2)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user