¿Puede algún experto ayudarme a cambiar la fórmula de alerta temprana del gráfico principal de TDX: la alerta temprana ocurre cuando el precio de las acciones cae a la posición donde se emite la última línea horizontal?
VAR1:=(8*JJ 7*REF(JJ, 1) 6*REF(JJ, 2) 5*REF(JJ, 3) 4 *REF(JJ, 4) 3*REF(JJ, 5) 2*REF(JJ, 6) REF(JJ, 8))/36; ) AND VOLgt; 2*REF(VOL, 1) AND CLOSEgt; VAR1 AND Cgt;
LJL:=FILTRO(TJ1, 5); TJ2: =SI(BARSLAST(LJL)=1 Y CLOSEgt; REF(ALTA, 1), 1, IF(BARSLAST(LJL)=2 Y CLOSEgt; REF(ALTA, 2), 1, IF(BARSLAST(LJL)= 3 Y CLOSEgt;REF(HIGH,3),1,0));
TP:=TJ2=1;
{STICKLINE(CLOSE,REF(LOW,BARSLAST(LJL)),REF (BAJO, BARRAS(LJL)), 6, 0), COLORAMARILLO;}
TJ3: =IF(BARSLAST(LJL)=1 AND CLOSEgt; REF(BAJO, 1), 1, IF(BARSLAST (LJL)=2 AND CLOSEgt;REF(LOW,2),1,IF(BARSLAST(LJL)=3 AND CLOSEgt;REF(LOW,3),1,0));
STFZ: = TJ3=1;
CL:=STFZ Y TP;
TJCL:=FILTRO(CL,3);
{STICKLINE(LJL,OPEN, CERRAR, 8, 0), COLORAMARILLO;}
x: C=REF(BAJO, BARRAS(LJL));
------------ ----------------------------------
Requirió mucho esfuerzo, advirtiendo a The La condición es que el precio de las acciones caiga hasta la línea horizontal, es decir: C=línea horizontal
.