From d063b51e13ee512ed9d778de828bcfb7af3c9526 Mon Sep 17 00:00:00 2001 From: emile-00 <106993396+emile-00@users.noreply.github.com> Date: Fri, 22 Nov 2024 08:58:07 -0800 Subject: [PATCH] Update demos/market-data-enrichment.mdx Co-authored-by: Richard Chien Signed-off-by: emile-00 <106993396+emile-00@users.noreply.github.com> --- demos/market-data-enrichment.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demos/market-data-enrichment.mdx b/demos/market-data-enrichment.mdx index 1dd6fed9..8e309c99 100644 --- a/demos/market-data-enrichment.mdx +++ b/demos/market-data-enrichment.mdx @@ -106,7 +106,7 @@ SELECT * FROM avg_price_bid_ask_spread LIMIT 5; ### Calculate rolling price volatility -The `rolling_volatility` materialized view uses the `stddev_samp` function to calculate the rolling price volatility within five-minute time windows by using `TUMBLE()` and grouping by the `assed_id` and the time window.. +The `rolling_volatility` materialized view uses the `stddev_samp` function to calculate the rolling price volatility within five-minute time windows by using `TUMBLE()` and grouping by the `assed_id` and the time window. ```sql CREATE MATERIALIZED VIEW rolling_volatility2 AS