Simple Visual Indicator based on the RSI that shows the intensity of the swing trading in levels from 1 to 9. Ideal for traders Beginners who want to identify swing trading.
“Good trading is something mechanical and, therefore, boring and uncreative, the only part that can really stimulate us is that in which we earn large sums of money and, unfortunately, through a good operation, the large sums of money will come in very short periods. “
BRUCE BABCOCK
Sencillo Indicador Visual basado en el RSI que muestra la intensidad de los swing trading en niveles del 1 al 9. Ideal para los traders Principiantes que quieran identificar los swing trading .
“El buen trading es algo mecánico y, por lo tanto, aburrido y poco creativo. La única parte que verdaderamente nos puede estimular es aquella en la que ganamos grandes sumas de dinero y, desafortunadamente, mediante una buena operativa las grandes sumas de dinero vendrán en periodos muy cortos.”
BRUCE BABCOCK
//Intensidad 1
C5 = RSI[1](close) >50
C6 = RSI[1](close) <50
IF C5 THEN
FUGA1 = 1
ELSIF C6 THEN
FUGA1 = -1
ELSE
FUGA1 = 0
ENDIF
//Intensidad 2
C11 = RSI[2](close) >50
C12 = RSI[2](close) <50
IF C11 THEN
FUGA2 = 2
ELSIF C12 THEN
FUGA2 = -2
ELSE
FUGA2 = 0
ENDIF
//Intensidad 3
C17 = RSI[3](close) >50
C18 = RSI[3](close) <50
IF C17 THEN
FUGA3 = 3
ELSIF C18 THEN
FUGA3 = -3
ELSE
FUGA3 = 0
ENDIF
//Intensidad 4
C23 = RSI[4](close) >50
C24 = RSI[4](close) <50
IF C23 THEN
FUGA4 = 4
ELSIF C24 THEN
FUGA4 = -4
ELSE
FUGA4 = 0
ENDIF
//Intensidad 5
C29 = RSI[5](close)>50
C30 = RSI[5](close) <50
IF C29 THEN
FUGA5 = 5
ELSIF C30 THEN
FUGA5 = -5
ELSE
FUGA5 = 0
ENDIF
//Intensidad 6
C35 = RSI[6](close) >50
C36 = RSI[6](close) <50
IF C35 THEN
FUGA6 = 6
ELSIF C36 THEN
FUGA6 = -6
ELSE
FUGA6 = 0
ENDIF
//Intensidad 7
C41 = RSI[7](close) >50
C42 = RSI[7](close) <50
IF C41 THEN
FUGA7 = 7
ELSIF C42 THEN
FUGA7 = -7
ELSE
FUGA7 = 0
ENDIF
//Intensidad 8
C47 = RSI[8](close) >50
C48 = RSI[8](close) <50
IF C47 THEN
FUGA8 = 8
ELSIF C48 THEN
FUGA8 = -8
ELSE
FUGA8 = 0
ENDIF
//Intensidad 9
C53 = RSI[9](close) >50
C54 = RSI[9](close) <50
IF C53 THEN
FUGA9 = 9
ELSIF C54 THEN
FUGA9 = -9
ELSE
FUGA9 = 0
ENDIF
Return fuga9 coloured (255,0,0) as "Level Off 9", fuga8 coloured (255,0,0) as "Level Off 8",fuga7 coloured (255,0,0) as "Level Off 7", fuga6 coloured (255,153,0) as "Level Off 6", fuga5 coloured (255,255,0) as "Level Off 5", fuga4 coloured (0,255,0) as "Level Off 4", fuga3 coloured (0,255,0) as "Level Off 3", fuga2 coloured (0,204,204) as "Level Off 2", fuga1 coloured (153,153,0) as "Level Off 1"
//////////////
//////////
//////
//(0, 0, 0)negro
//(255, 255, 255)blanco
//(255, 0, 0)rojo
//(0, 255, 0)verde
//(0, 0, 255)azul
//(255, 255, 0)amarillo
//(0, 255, 255)azul celeste
//(255, 0, 255)añil