Skip to the content.

Spark Trend Calculus Examples

Johannes Graner, Albert Nilsson and Raazesh Sainudiin

2020, Uppsala, Sweden

This project was supported by Combient Mix AB through summer internships at:

Combient Competence Centre for Data Engineering Sciences, Department of Mathematics, Uppsala University, Uppsala, Sweden

Rafailia Stavroula Vlachou and Virginia Jimenez Mohedano

2021, Uppsala, Sweden

2021 Data Science Project fellowships at:

Combient Competence Centre for Data Engineering Sciences, Department of Mathematics, Uppsala University, Uppsala, Sweden and COmbient Mix AB, Stockholm.

Introduction to Trend Calculus

Trend Calculus is an algorithm invented by Andrew Morgan that is used to find trend changes in a time series. The images in this section are taken from Morgan’s presentation which can be found here.

It works by grouping the observations in the time series into windows and defining a trend upwards as “higher highs and higher lows” compared to the previous window. A downwards trend is similarly defined as “lower highs and lower lows”

HigherHighHigherLow

If there is a higher high and lower low (or lower high and higher low), no trend is detected. This is solved by introducing intermediate windows that split the non-trend into two trends, ensuring that every point can be labeled with either an up or down trend.

OuterInnerBars

When the trends have been calculated for all windows, the points where the trends change sign are labeled as reversals. If the reversal is from up to down, the previous high is the reversal point and if the reversal is from down to up, the previous low is the reversal. This means that the reversals always are the appropriate extrema (maximum for up to down, minimum for down to up)

trendReversals

The output of the algorithm is a time series consisting of all the labelled reversal points. It is therefore possible to use this as the input for another run of the Trend Calculus algorithm, finding more long term trends.

A more mathematical description of the algorithm can be found here.

Trend Calculus of OIL Price

Example Applications of Trend Calculus in Apache Spark.

oiltrends

Utility functions for paths in file system

Finding trend in oil price data:

This is the basic use case of Trend Calculus, reading static financial data and using Trend Calculus to find trend reversals.

Streaming Example with multiple sources and sinks:

A slightly different syntax is required to run several iterations of Trend Calculus on a streaming dataframe. Finding the maximum order trend reversal at a given point can not be performed on streaming dataframes.

A simple Markov Chain model for trend prediction

Here it is also shown that a model can be trained on trend reversals from different time series and yield results that are comparable to training on the same amount of data from a single time series.

As seen in this notebook, the information in the trend reversals contain information that can be used to predict future trends. This should be considered a proof-of-concept to show that trend reversals could be a useful feature in more advanced machine learning models.

Bivariate Trend Calculus of OIL Price and GOLD ounce in USD

bivariatetrends

Bivariate Trend Calculus GOLD ounce and S&P index in USD

bivariatetrends

Resources

This builds on the following library and its antecedents therein:

This work was inspired by:



edit on GitHub