| /regular_expression/ ], (Optional)
-[warmup_type](#warmup-type) (Optional)
+[hold_period](#hold_period) (Optional)
+[warmup_type](#warmup_type) (Optional)
`DOUBLE_EXPONENTIAL_MOVING_AVERAGE(field_key, 2)`
Returns the field values associated with the [field key](/influxdb/v1.8/concepts/glossary/#field-key)
@@ -6573,7 +6573,7 @@ KAUFMANS_EFFICIENCY_RATIO([ * | | /regular_expression/ ], [,
**Available Arguments:**
[period](#period)
-[hold_period](#hold-period) (Optional)
+[hold_period](#hold_period) (Optional)
`KAUFMANS_EFFICIENCY_RATIO(field_key, 2)`
Returns the field values associated with the [field key](/influxdb/v1.8/concepts/glossary/#field-key)
@@ -6627,7 +6627,7 @@ KAUFMANS_ADAPTIVE_MOVING_AVERAGE([ * | | /regular_expression/ ], (Optional)
+[hold_period](#hold_period) (Optional)
`KAUFMANS_ADAPTIVE_MOVING_AVERAGE(field_key, 2)`
Returns the field values associated with the [field key](/influxdb/v1.8/concepts/glossary/#field-key)
@@ -6667,8 +6667,8 @@ See the [Advanced Syntax](#advanced-syntax) section for how to use `KAUFMANS_ADA
The triple exponential moving average (TEMA) was developed to filter out
volatility from conventional moving averages.
While the name implies that it's a triple exponential smoothing, it's actually a
-composite of a [single exponential moving average](#exponential-moving-average),
-a [double exponential moving average](#double-exponential-moving-average),
+composite of a [single exponential moving average](#exponential_moving_average),
+a [double exponential moving average](#double_exponential_moving_average),
and a triple exponential moving average.
Source
@@ -6682,8 +6682,8 @@ TRIPLE_EXPONENTIAL_MOVING_AVERAGE([ * | | /regular_expression/ ], (Optional)
-[warmup_type](#warmup-type) (Optional)
+[hold_period](#hold_period) (Optional)
+[warmup_type](#warmup_type) (Optional)
`TRIPLE_EXPONENTIAL_MOVING_AVERAGE(field_key, 2)`
Returns the field values associated with the [field key](/influxdb/v1.8/concepts/glossary/#field-key)
@@ -6746,8 +6746,8 @@ TRIPLE_EXPONENTIAL_DERIVATIVE([ * | | /regular_expression/ ], (Optional)
-[warmup_type](#warmup-type) (Optional)
+[hold_period](#hold_period) (Optional)
+[warmup_type](#warmup_type) (Optional)
`TRIPLE_EXPONENTIAL_DERIVATIVE(field_key, 2)`
Returns the field values associated with the [field key](/influxdb/v1.8/concepts/glossary/#field-key)
@@ -6797,8 +6797,8 @@ RELATIVE_STRENGTH_INDEX([ * | | /regular_expression/ ], [, <
**Available Arguments:**
[period](#period)
-[hold_period](#hold-period) (Optional)
-[warmup_type](#warmup-type) (Optional)
+[hold_period](#hold_period) (Optional)
+[warmup_type](#warmup_type) (Optional)
`RELATIVE_STRENGTH_INDEX(field_key, 2)`
Returns the field values associated with the [field key](/influxdb/v1.8/concepts/glossary/#field-key)
@@ -6883,7 +6883,7 @@ The query returns the [mode](#mode) field values for the `water_level` field key
The `water_level` mode is in the `mode` column and the `level description` mode is in the `mode_1` column.
The system can't return more than one column with the same name so it renames the second `mode` column to `mode_1`.
-See [Rename the Output Field Key](#rename-the-output-field-key) for how to configure the output column headers.
+See [Rename the Output Field Key](#rename_the_output_field_key) for how to configure the output column headers.
###### Calculate the minimum and maximum field values in one query
@@ -7003,13 +7003,13 @@ See the function-specific documentation for common issues with individual functi
Some InfluxQL functions support nesting in the [`SELECT` clause](/influxdb/v1.8/query_language/explore-data/#select-clause):
* [`COUNT()`](#count) with [`DISTINCT()`](#distinct)
-* [`CUMULATIVE_SUM()`](#cumulative-sum)
+* [`CUMULATIVE_SUM()`](#cumulative_sum)
* [`DERIVATIVE()`](#derivative)
* [`DIFFERENCE()`](#difference)
* [`ELAPSED()`](#elapsed)
-* [`MOVING_AVERAGE()`](#moving-average)
-* [`NON_NEGATIVE_DERIVATIVE()`](#non-negative-derivative)
-* [`HOLT_WINTERS()`](#holt-winters) and [`HOLT_WINTERS_WITH_FIT()`](#holt-winters)
+* [`MOVING_AVERAGE()`](#moving_average)
+* [`NON_NEGATIVE_DERIVATIVE()`](#non_negative_derivative)
+* [`HOLT_WINTERS()`](#holt_winters) and [`HOLT_WINTERS_WITH_FIT()`](#holt_winters)
For other functions, use InfluxQL's [subqueries](/influxdb/v1.8/query_language/explore-data/#subqueries) to nest functions in the [`FROM` clause](/influxdb/v1.8/query_language/explore-data/#from-clause).
See the [Data Exploration](/influxdb/v1.8/query_language/explore-data/#subqueries) page more on using subqueries.