diff --git a/trading/algorithms.md b/trading/algorithms.md index 3377b01..dda955d 100644 --- a/trading/algorithms.md +++ b/trading/algorithms.md @@ -323,8 +323,8 @@ Below shows all the current trading algorithms development stages and let's user
The Rational Quadratic kernel trading algorithm is a type of kernel function used in Gaussian Process Regression (GPR) models. It is derived from the Radial Basis Function (RBF) kernel and can be considered as an infinite sum of RBF kernels with different length-scales.
The Rational Quadratic kernel is defined as:
k(x, x') = (1 + (x - x')^2 / (2αl^2))^(-α)
Where:
α
is a scale mixture parameter.l
is the length-scale parameter.Some key properties of the Rational Quadratic kernel include:
α
parameter, it can approximate the behavior of other kernels like the RBF (α → ∞
) or the Matérn class of kernels (α = p/2
, where p
is a positive integer).While the Rational Quadratic kernel trading algorithm itself does not directly provide support and resistance areas, the Gaussian Process Regression model using this kernel can be employed to identify such areas based on the predicted mean and uncertainty estimates.
Potential support and resistance areas can be inferred from the predicted mean function, where:
Additionally, the uncertainty estimates (e.g., variance) from the GPR model can help quantify the confidence in these potential support/resistance areas. Areas with lower uncertainty are more likely to be significant support/resistance levels.
In summary, the Rational Quadratic kernel trading algorithm offers a flexible and smooth kernel for GPR models, which can then be leveraged to identify potential support and resistance areas in financial data or other time series analysis tasks.
The Rational Quadratic kernel trading algorithm is a type of kernel function used in Gaussian Process Regression (GPR) models. It is derived from the Radial Basis Function (RBF) kernel and can be considered as an infinite sum of RBF kernels with different length-scales.
The Rational Quadratic kernel is defined as:
k(x, x') = (1 + (x - x')^2 / (2αl^2))^(-α)
Where:
α
is a scale mixture parameter.l
is the length-scale parameter.Some key properties of the Rational Quadratic kernel include:
α
parameter, it can approximate the behavior of other kernels like the RBF (α → ∞
) or the Matérn class of kernels (α = p/2
, where p
is a positive integer).While the Rational Quadratic kernel trading algorithm itself does not directly provide support and resistance areas, the Gaussian Process Regression model using this kernel can be employed to identify such areas based on the predicted mean and uncertainty estimates.
Potential support and resistance areas can be inferred from the predicted mean function, where:
Additionally, the uncertainty estimates (e.g., variance) from the GPR model can help quantify the confidence in these potential support/resistance areas. Areas with lower uncertainty are more likely to be significant support/resistance levels.
In summary, the Rational Quadratic kernel trading algorithm offers a flexible and smooth kernel for GPR models, which can then be leveraged to identify potential support and resistance areas in financial data or other time series analysis tasks.
This algorithm added little benefit to traders and so the decision was to remove it!