• Welcome back! Thank you for being a part of this Traders Community. Let's discuss and share :)
    Selamat datang kembali! Trimakasih telah menjadi bagian dari Komunitas Trader ini. Mari berdiskusi dan berbagi :)

Suggestion Free RSI - Norepaint by ICQX

Thank you this is a nice indie it looks like it would do good on a 60 sec BO trade taking the next candle.
I need to see how the bands form when live . It may not give enough time
 


Is it possible to get the mq file for this indie I would like to code in a alert on the cross thanks
 
I have a coder put alerts on this with arrows when it cross
Enjoy
Randy
hey ur idicator does not open in mt4. why? i needed alert..
 

Attachments

Kalau bisa disiplin menggunakan aturan indikator mungkin hasilnya bisa memuaskan juga kali
Tapi kalau tak bisa disiplin dan menggunakan risk manajemen mungkin ketika market tak sesuai dengan arah sinyal indi bisa kacau juga
 
Code:
*/
#property copyright "Copyright © "
#property link      "ZX"

#property indicator_separate_window
#property indicator_levelcolor DarkGreen
#property indicator_levelstyle 0
#property indicator_buffers 6
#property indicator_color1 White
#property indicator_color2 Fuchsia
#property indicator_color3 DeepSkyBlue
#property indicator_color4 Yellow
#property indicator_color5 LimeGreen
#property indicator_color6 Black
#property indicator_level1 30.0
#property indicator_style2 2
#property indicator_level2 50.0
#property indicator_level3 70.0

extern int RSI = 9;
extern int MA1 = 4;
extern int MA2 = 3;
extern int MA3 = 3;
extern int EnvPeriod = 20;
extern int EnvDeviat = 1;
double G_ibuf_100[];
double G_ibuf_104[];
double G_ibuf_108[];
double G_ibuf_112[];
double G_ibuf_116[];
double G_ibuf_120[];

int init() {
   SetIndexBuffer(0, G_ibuf_104);
   SetIndexStyle(0, DRAW_LINE);
   SetIndexBuffer(1, G_ibuf_108);
   SetIndexStyle(1, DRAW_LINE);
   SetIndexBuffer(2, G_ibuf_112);
   SetIndexStyle(2, DRAW_LINE);
   SetIndexBuffer(3, G_ibuf_116);
   SetIndexStyle(3, DRAW_LINE);
   SetIndexBuffer(4, G_ibuf_120);
   SetIndexStyle(4, DRAW_LINE);
   SetIndexBuffer(5, G_ibuf_100);
   SetIndexStyle(5, DRAW_NONE);
   IndicatorShortName("freeRSI(" + RSI + ", " + MA1 + ", " + MA2 + ", " + MA3 + ", " + EnvPeriod + ", " + DoubleToStr(EnvDeviat, 2) + ")");
   return (0);
}

int start() {
   for (int Li_0 = 0; Li_0 < Bars; Li_0++) G_ibuf_100[Li_0] = iRSI(NULL, 0, RSI, PRICE_WEIGHTED, Li_0);
   for (Li_0 = 0; Li_0 < Bars; Li_0++) {
      G_ibuf_116[Li_0] = iEnvelopesOnArray(G_ibuf_100, 0, EnvPeriod, MODE_LWMA, 0, EnvDeviat, MODE_UPPER, Li_0);
      G_ibuf_120[Li_0] = iEnvelopesOnArray(G_ibuf_100, 0, EnvPeriod, MODE_LWMA, 0, EnvDeviat, MODE_LOWER, Li_0);
      G_ibuf_104[Li_0] = iMAOnArray(G_ibuf_100, 0, MA1, 0, MODE_LWMA, Li_0);
   }
   for (Li_0 = 0; Li_0 < Bars; Li_0++) G_ibuf_108[Li_0] = iMAOnArray(G_ibuf_104, 0, MA2, 0, MODE_LWMA, Li_0);
   for (Li_0 = 0; Li_0 < Bars; Li_0++) G_ibuf_112[Li_0] = iMAOnArray(G_ibuf_108, 0, MA3, 0, MODE_LWMA, Li_0);
   return (0);
}

Permit for correction
After breaking this code on mq4, i found that indicator still repaint because of the RSI price set to "weighted", if u want to set non - repaint the price could be set to "open"
Thanks...



Indonesian portal forex live trading and streaming (education only) at
www.fx8pro.com
www.fxeight.com
www.fin8ity.com
 
I believe when I am working with this one, it will make me nerves as there is many crosses in with 3 lines so, what I have to do? it will hit SL and then I will lose. how many % do you believe it will give me 30 - 40% it is really bad for me...

thanks,
 
Back
Top