Jump to content

(Req) please help to decompile this indi


Recommended Posts

Just download it and put it on your chart. You will see.

If you still dont understand, I will explain later after having the file in mq4.

Regards,

Anton

 

 

Hey Anton :)

 

Two remarks:

1/ It's protected, so it won't be easy to decompile

2/ After putting that on the chart, nothing appears ....

 

So... Is it a joke ? :D

Link to comment
Share on other sites

http://www.4shared.com/file/73SSWbHN/EYANG_PANAH_H1.html

 

Decompiled, I can't see any protection,

 

AKN

 

Hi Aknforex

 

For decompiling ex4 I have the ex4-to-mq4 soft version 4.0.224.1, and, with this version, it says that it's either protected or broken. If you have another soft to do this job (or a more recent version that the one I have), could you kindly share it ? :)

 

 

Anton:

For the decompiled soft, several remarks:

 

It needs 2 custom indicators named "snake" and "t3_clean", and obviously if you don't have them this indicator won't show anything lol.

 

Be aware that this indicator has a high probability to repaint what it may show, as the calculations goes from the last bar (li_8 = 0) to the numbers of bars the indicator has to compute when bars change (li_0).

 

If you want to be certain that the indi doesn't repaint, change this line:

for (int li_8 = 0; li_8 < li_0; li_8++) {

 

by this one:

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

 

and after that check the signals you get and compare before and after this change :)

 

 

Please kindly share the 2 customs indis, snake and t3_clean, I'm curious to see what it does ;)

Edited by mambo123
Link to comment
Share on other sites

Hi mambo,

Here in the indis you want:

http://www.mediafire.com/?8k86h8c3x9qdip7

http://www.mediafire.com/?kavh0bfytta2smv

 

Can you help me to make the Eyang Indi to become not repaint, and share here in mq4?

Thank you and regards,

Anton

 

 

 

 

Hi Aknforex

 

For decompiling ex4 I have the ex4-to-mq4 soft version 4.0.224.1, and, with this version, it says that it's either protected or broken. If you have another soft to do this job (or a more recent version that the one I have), could you kindly share it ? :)

 

 

Anton:

For the decompiled soft, several remarks:

 

It needs 2 custom indicators named "snake" and "t3_clean", and obviously if you don't have them this indicator won't show anything lol.

 

Be aware that this indicator has a high probability to repaint what it may show, as the calculations goes from the last bar (li_8 = 0) to the numbers of bars the indicator has to compute when bars change (li_0).

 

If you want to be certain that the indi doesn't repaint, change this line:

for (int li_8 = 0; li_8 < li_0; li_8++) {

 

by this one:

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

 

and after that check the signals you get and compare before and after this change :)

 

 

Please kindly share the 2 customs indis, snake and t3_clean, I'm curious to see what it does ;)

Link to comment
Share on other sites

Hi mambo,

Here in the indis you want:

http://www.mediafire.com/?8k86h8c3x9qdip7

http://www.mediafire.com/?kavh0bfytta2smv

 

Can you help me to make the Eyang Indi to become not repaint, and share here in mq4?

Thank you and regards,

Anton

 

Yep i have coded it.

 

Will check tomorrow if it doesn't repaint, and if not i'll publish it here.

 

Btw, if it doesn't repaint it'll be VERY interesting :)

 

 

Edit: nope, it will repaint :((, almost sure of that ...

In fact it's the "snake" indi that repaints: It's evident in this loop:

 

for(j=Shift-Snake_HalfCycle,i=Shift+Snake_HalfCycle,w=1;

w<= Snake_HalfCycle;

j++,i--,w++)

{

Snake_Sum=Snake_Sum+w*(SnakePrice(i)+SnakePrice(j));

 

 

The loop on i will search past values, but the one for j will seek futures values of the indi :(

 

It will repaint in a width corresponding to the parameter Snake_HalfCycle

Edited by mambo123
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...