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
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 |
//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 |
Share this
No information on this site is investment advice or a solicitation to buy or sell any financial instrument. Past performance is not indicative of future results. Trading may expose you to risk of loss greater than your deposits and is only suitable for experienced investors who have sufficient financial means to bear such risk.
ProRealTime ITF files and other attachments :PRC is also on YouTube, subscribe to our channel for exclusive content and tutorials
Hello, could you tell me how to use this indicator? I think the simplest things can still be the most successful