From f05831b5f176dc09f01d7f048aa8d3c6dd33310c Mon Sep 17 00:00:00 2001 From: avraham Date: Sun, 23 Feb 2025 13:20:05 -0500 Subject: [PATCH] return moniness in percentage, not ratio --- server/src/CalendarExitPriceChart.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/CalendarExitPriceChart.ts b/server/src/CalendarExitPriceChart.ts index f2fb205..ab81d0a 100644 --- a/server/src/CalendarExitPriceChart.ts +++ b/server/src/CalendarExitPriceChart.ts @@ -31,7 +31,7 @@ export const getChartData = publicProcedure return await query<[number, number, number]>( ` SELECT - moniness as x, + moniness*100 as x, FLOOR(price, 1) as y, sum(number_of_quotes) as n FROM calendar_stats