Buy/Sell indicator 90 % accurate? - page 16

 

Oh guys, you cracked me up

Stop it please

Edit : just thinking if there is an ignore list on forex-tsd ?

 
 

Ir Eko Cahyono MM.ex4

HI,

Can you please tell me set up.

What is the blue line indicator name and how to put the numbers?

What is those two moving average is it SMA or EMA and what is the period you use for them.

It would be very nice to see the indicator really work for us.

I will be very glad if you send me an e-mail with this solution.

Regards,

saifalone@gmail.com

 

best forex signals

etrade:
Is this (Ir Eko Cahyono MM.ex4 ) available as mq4 file ?

I am very very new here. just registered. landed here while searching for the subject matter viz-- best forex signals - Ir Eko Cahyono MM.ex4. I live in india. I tried to call this person and mailed him to know further.

I want to know whether this really works? any other such indicator software like this? how to get this for my own use? can any one guide and help me?

waiting for some clue-- guidance -- even if any one can send me the indicator if it is available for free and with narration on how to install it

 
RickW00716:
I got this indicator for free(another forum)...there is a website that supposedly describes how it is used and it is said to be 90% accurate.

The website is www.best-forex-signal.com. It is in a foreign language that I do not understand, though.

Attached is the indicator.

I also downloaded this link. is it only 7 kb in size? how to use it ? any instructions in this forum. pls. give info as there are more pages to search.

 

hi

Hi, which indicator is that yellow dot appearing above n below the candle it looks perfect to me if it aint repaint.

Thankx

 

MY IDEA!!!! (actually I really dont know if someone else is trading by this way...)

hi all!!!

I was reading this thread about ir eko cahyono indicator... and I wanna share the way I am using this indicator... Fisrt of all go to Mr. Nims thread (renko) download the renko charts if you dont have it... ( https://www.mql5.com/en/forum/179557 ) while you are reading the pdf installation manual you can see that it says that you have to use renko on 1 min chart, but actually you can use then on any time frame... I personally use at 4h chart... Just do the same thing as says the pdf on any time frame... After that put 50 pips box... Why use 50 pips renko box?? well i dont want to trade for 30, 40 or 60 pips... If i trade I want to make at least 120 150 o even better 200 pips... (On this picture has 10 pips box because the market is alredy close so it has to refresh in order to actualize the renko chart...... once you have it..

Add Eko cahyono indicator... and also can use fxtrend indicator on this same trend just look at them... (eko cahyono gives the signal after 2 or 3 bars... and I think it can be a good signal right???

so please tell me what you think about this... and hope you all makes a lot of pips...

and sorry for my bad english... havent practice since 6 years...

Files:
 

That´s the code

#property indicator_separate_window

#property indicator_minimum 0.0

#property indicator_maximum 1.0

#property indicator_buffers 4

#property indicator_color1 Fuchsia

#property indicator_color2 Aqua

#property indicator_color3 Blue

#property indicator_color4 Red

extern int PeriodWATR = 7;

extern double Kwatr = 0.7;

extern int HighLow = 0;

extern int CalculatedBars = 500;

extern bool alert_ON = TRUE;

double g_ibuf_100[];

double g_ibuf_104[];

double g_ibuf_108[];

double g_ibuf_112[];

bool gi_unused_116 = TRUE;

int init() {

IndicatorBuffers(4);

SetIndexStyle(0, DRAW_LINE, STYLE_SOLID, 1);

SetIndexStyle(1, DRAW_LINE, STYLE_SOLID, 1);

SetIndexStyle(2, DRAW_ARROW, STYLE_SOLID, 2);

SetIndexStyle(3, DRAW_ARROW, STYLE_SOLID, 2);

SetIndexEmptyValue(2, 0);

SetIndexArrow(2, 333);

SetIndexEmptyValue(3, 0);

SetIndexArrow(3, 334);

SetIndexBuffer(0, g_ibuf_100);

SetIndexBuffer(1, g_ibuf_104);

SetIndexBuffer(2, g_ibuf_108);

SetIndexBuffer(3, g_ibuf_112);

IndicatorDigits(MarketInfo(Symbol(), MODE_DIGITS));

string ls_0 = "Ir. Eko Cahyono M.M.";

IndicatorShortName(ls_0);

SetIndexDrawBegin(0, PeriodWATR);

SetIndexDrawBegin(1, PeriodWATR);

return (0);

}

int deinit() {

return (0);

}

int start() {

int li_8;

int li_12;

int li_16;

double ld_20;

double ld_28;

double ld_36;

double ld_44;

double ld_52;

double ld_60;

double ld_68;

double ld_76;

double ld_84;

double ld_100;

double ld_108;

double ld_116;

double ld_124;

double ld_132;

double ld_140;

double ld_148;

double ld_156;

double ld_164;

double ld_172;

double ld_180;

double ld_188;

double ld_196;

double ld_204;

double ld_212;

int li_unused_220;

int li_unused_224;

int li_unused_228;

double ld_232;

double ld_240;

double ld_248;

double ld_256;

double ld_264;

double ld_272;

int li_280 = 0;

int li_284 = 0;

ArrayInitialize(g_ibuf_108, 0);

ArrayInitialize(g_ibuf_112, 0);

if (CalculatedBars > Bars || CalculatedBars == 0) CalculatedBars = Bars;

for (int li_4 = CalculatedBars - 1; li_4 >= 0; li_4--) {

ld_52 = 0;

for (int li_0 = PeriodWATR - 1; li_0 >= 0; li_0--) {

ld_60 = 1.0 * (PeriodWATR - li_0) / PeriodWATR + 1.0;

ld_52 += ld_60 * MathAbs(High[li_0 + li_4] - (Low[li_0 + li_4]));

}

ld_68 = ld_52 / PeriodWATR;

ld_76 = MathMax(ld_68, ld_76);

if (li_4 == CalculatedBars - 1 - PeriodWATR) ld_84 = ld_68;

ld_84 = MathMin(ld_68, ld_84);

li_unused_220 = MathRound(Kwatr * ld_84 / Point);

li_unused_224 = MathRound(Kwatr * ld_76 / Point);

li_unused_228 = MathRound(Kwatr / 2.0 * (ld_76 + ld_84) / Point);

ld_232 = Kwatr * ld_84;

ld_240 = Kwatr * ld_76;

ld_248 = Kwatr / 2.0 * (ld_76 + ld_84);

ld_272 = Close[li_4];

ld_256 = High[li_4];

ld_264 = Low[li_4];

if (HighLow > 0) {

ld_28 = ld_264 + 2.0 * ld_232;

ld_20 = ld_256 - 2.0 * ld_232;

ld_108 = ld_264 + 2.0 * ld_240;

ld_100 = ld_256 - 2.0 * ld_240;

ld_140 = ld_264 + 2.0 * ld_248;

ld_132 = ld_256 - 2.0 * ld_248;

if (ld_272 > ld_44) li_8 = 1;

if (ld_272 < ld_36) li_8 = -1;

if (ld_272 > ld_124) li_12 = 1;

if (ld_272 < ld_116) li_12 = -1;

if (ld_272 > ld_156) li_16 = 1;

if (ld_272 < ld_148) li_16 = -1;

}

if (HighLow == 0) {

ld_28 = ld_272 + 2.0 * ld_232;

ld_20 = ld_272 - 2.0 * ld_232;

ld_108 = ld_272 + 2.0 * ld_240;

ld_100 = ld_272 - 2.0 * ld_240;

ld_140 = ld_272 + 2.0 * ld_248;

ld_132 = ld_272 - 2.0 * ld_248;

if (ld_272 > ld_44) li_8 = 1;

if (ld_272 < ld_36) li_8 = -1;

if (ld_272 > ld_124) li_12 = 1;

if (ld_272 < ld_116) li_12 = -1;

if (ld_272 > ld_156) li_16 = 1;

if (ld_272 < ld_148) li_16 = -1;

}

if (li_8 > 0 && ld_20 < ld_36) ld_20 = ld_36;

if (li_8 ld_44) ld_28 = ld_44;

if (li_12 > 0 && ld_100 < ld_116) ld_100 = ld_116;

if (li_12 ld_124) ld_108 = ld_124;

if (li_16 > 0 && ld_132 < ld_148) ld_132 = ld_148;

if (li_16 ld_156) ld_140 = ld_156;

if (li_8 > 0) ld_164 = ld_20 + ld_232;

if (li_8 < 0) ld_164 = ld_28 - ld_232;

if (li_12 > 0) ld_172 = ld_100 + ld_240;

if (li_12 < 0) ld_172 = ld_108 - ld_240;

if (li_16 > 0) ld_180 = ld_132 + ld_248;

if (li_16 < 0) ld_180 = ld_140 - ld_248;

ld_204 = ld_172 - ld_240;

ld_212 = ld_172 + ld_240;

ld_188 = (ld_164 - ld_204) / (ld_212 - ld_204);

ld_196 = (ld_180 - ld_204) / (ld_212 - ld_204);

g_ibuf_100[li_4] = ld_188;

g_ibuf_104[li_4] = ld_196;

ld_36 = ld_20;

ld_44 = ld_28;

ld_116 = ld_100;

ld_124 = ld_108;

ld_148 = ld_132;

ld_156 = ld_140;

if (li_4 != 0) {

li_280 = li_284;

if (g_ibuf_100[li_4] > g_ibuf_104[li_4]) li_284 = 1;

else li_284 = -1;

if (li_280 == -1 && li_284 == 1) g_ibuf_108[li_4] = g_ibuf_104[li_4];

if (li_280 == 1 && li_284 == -1) g_ibuf_112[li_4] = g_ibuf_104[li_4];

}

}

if (Volume[0] > 1.0) return (0);

if (alert_ON) {

if (li_280 * li_284 < 0) {

Alert("StepStoch crossed on ", Symbol(), "-", Period());

PlaySound("timeout.wav");

gi_unused_116 = FALSE;

}

}

return (0);

}

 

...

Actually that is a decompiled code of igorads step stochastic :):).

It can be found on a lot of places in its clean source code

 

take ma_i-CA.mq4

Files:
ma_i-ca.mq4  2 kb
Reason: