Esta estrategia utiliza técnicas de regresión lineal para calcular la intercepción de regresión lineal y la utiliza como señal de negociación para construir una estrategia de negociación cuantitativa. Al analizar las series de tiempo de precios de las acciones, esta estrategia se ajusta a una línea de tendencia de regresión lineal y utiliza la intercepción de regresión lineal para juzgar si los precios están sobreestimados o subestimados, generando así señales de negociación.
La intersección de regresión lineal indica el valor predicho de Y (generalmente el precio) cuando el valor de la serie de tiempo X es 0. Esta estrategia prefiere el parámetro Length, toma el precio de cierre como la secuencia de origen y calcula la intersección de regresión lineal (xLRI) de los días de longitud más recientes.
La fórmula específica de cálculo es la siguiente:
xX = Length *(Length - 1)* 0.5
xDivisor = xX *xX - Length* Length *(Length - 1) *(2 * Length - 1) / 6
xXY = Σ(i *Closing Price[i]), i from 0 to Length-1
xSlope = (Length *xXY - xX* Σ(Closing Price, Length))/ xDivisor
xLRI = (Σ(Closing Price, Length) - xSlope * xX) / Length
A través de dichos cálculos, se puede obtener la interceptación de regresión lineal xLRI para los días de longitud más recientes.
Esta estrategia tiene las siguientes ventajas:
Esta estrategia también tiene algunos riesgos:
Contramedidas:
Esta estrategia también puede optimizarse en los siguientes aspectos:
Esta estrategia construye una estrategia comercial cuantitativa simple basada en la intercepción de regresión lineal. En general, la estrategia tiene cierto valor económico, pero también hay algunos riesgos a tener en cuenta.
/*backtest start: 2023-11-28 00:00:00 end: 2023-12-28 00:00:00 period: 1h basePeriod: 15m exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=2 //////////////////////////////////////////////////////////// // Copyright by HPotter v1.0 21/03/2018 // Linear Regression Intercept is one of the indicators calculated by using the // Linear Regression technique. Linear regression indicates the value of the Y // (generally the price) when the value of X (the time series) is 0. Linear // Regression Intercept is used along with the Linear Regression Slope to create // the Linear Regression Line. The Linear Regression Intercept along with the Slope // creates the Regression line. // // You can change long to short in the Input Settings // WARNING: // - For purpose educate only // - This script to change bars colors. //////////////////////////////////////////////////////////// strategy(title="Line Regression Intercept Backtest", overlay = true) Length = input(14, minval=1) xSeria = input(title="Source", defval=close) reverse = input(false, title="Trade reverse") xX = Length * (Length - 1) * 0.5 xDivisor = xX * xX - Length * Length * (Length - 1) * (2 * Length - 1) / 6 xXY = 0 for i = 0 to Length-1 xXY := xXY + (i * xSeria[i]) xSlope = (Length * xXY - xX * sum(xSeria, Length)) / xDivisor xLRI = (sum(xSeria, Length) - xSlope * xX) / Length pos = iff(close > xLRI, 1, iff(close < xLRI, -1, nz(pos[1], 0))) possig = iff(reverse and pos == 1, -1, iff(reverse and pos == -1, 1, pos)) if (possig == 1) strategy.entry("Long", strategy.long) if (possig == -1) strategy.entry("Short", strategy.short) barcolor(possig == -1 ? red: possig == 1 ? green : blue ) plot(xLRI, color=blue, title="LRI")