Documentation | Discord community
Table of content
In fact, markets are efficient by definition, and since traders try to follow the technical analysis it results in the predicability of the market and we are able to observe patterns.
However, since patterns might be difficult to identify we tried to analyze and categorize each and every pattern using a mathematical approach.
We also compared this method to the Dynamic Time Warping method.
Point to point AAPL / AMZN Mean distance : 0.02
Dynamic time warping AAPL / AMZN Mean distance : 0.02
-
Let's assume that we have a reference dataset : the 21 last days of daily close prices for AAPL We want to predict what will happen in 21 days on the AAPL chart.
-
We go through a strong database of charts with daily close prices for a given list of assets (comparison assets).
-
Then we subdivide the database in list of 21 days (21 values) of close prices.
-
Now that we have a lot of charts (list of 21 values), we are able to compare them. Since they have the same length, we are able to use the point to point pattern matching analysis.
-
We put each and every 21 values charts in the algorithm to find the one which has the best pattern matching with our AAPL chart of 21 values.
-
Once we know which dataset (corresponding to a pattern) fits the best with our reference dataset, we look at what happened after the matching on the pattern.


