From 0c02fc7b42fbb11044a45cd2ce55d7a30a9034b6 Mon Sep 17 00:00:00 2001 From: javier Date: Wed, 29 Apr 2026 14:07:09 +0200 Subject: [PATCH] Add ohlc_bar, ohlc_bar_labels, depth_chart, depth_chart_labels functions --- src/grammar/functions.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/grammar/functions.ts b/src/grammar/functions.ts index aa9d901..0a7bec6 100644 --- a/src/grammar/functions.ts +++ b/src/grammar/functions.ts @@ -59,6 +59,8 @@ export const scalarFunctions: string[] = [ "day_of_week_sunday_first", "days_in_month", "degrees", + "depth_chart", + "depth_chart_labels", "dim_length", "dot_product", "dump_memory_usage", @@ -253,6 +255,8 @@ export const aggregateFunctions: string[] = [ "min", "mode", "nsum", + "ohlc_bar", + "ohlc_bar_labels", "regr_intercept", "regr_slope", "sparkline",