Forecast()

Returns the forecasted value for the given expression using the data for the current entity.

Returns the forecasted value for the given expression using the data for the current entity.

Syntax

Forecast(numeric expression)

Example

Forecast("oil in production rate" in "m3/h")

 

Returns the forecasted value for the given depth expression using the data for the current entity.

Syntax

Forecast(numeric expression)

Example

Forecast("TVD" in "m")

 

Returns the forecasted value for the given expression using the data for the current entity.

Syntax

Forecast(numeric expression, window size)

Example

Forecast("oil in production rate" in "m3/h",7)

 

Returns the forecasted value for the given depth expression using the data for the current entity.

Syntax

Forecast(numeric expression, window size)

Example

Forecast("TVD" in "m", 7)

 

Returns the forecasted value starting from the provided time for the given  expression using the data for the current entity.

Syntax

Forecast(numeric expression, date/time forecastStartTime)

Example

Forecast("oil in production rate" in "m3/h", #01/01/2021#)

 

Returns the forecasted value starting from the provided time for the given  expression using the data for the current entity.

Syntax

Forecast(numeric expression, window size, date/time forecastStartTime)

Example

Forecast("oil in production rate" in "m3/h", 7, #01/01/2021#)

 

Returns the forecasted value starting from the provided time for the given depth expression using the data for the current entity.

Syntax

Forecast(numeric expression, window size, forecastStartDepth)

Example

Forecast("TVD" in "ft", 7,10)

 

Returns forecasted value starting from the provided time for the given expression using the data for current entity.

Syntax

Forecast(numericExpression, windowSize,  forecastStartTime, seriesLength, 
boolean shouldStabilize, rank)

Example

Forecast("oil production rate" in "m3/h", 7, #01/01/2021#, 50, False, 5)

 

Returns forecasted value starting from the provided depth for the given depth expression using the data for current entity.

Syntax

Forecast(numericExpression,  windowSize, forecastStartDepth, seriesLength, 
boolean shouldStabilize,  rank)

Example

Forecast("TVD" in "ft", 7, 10, 70, True, 6)