Jump to content

Recommended Posts

Posted
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

Posted (edited)
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
Posted

Hi,

 

Thanks for all the PMs but I can not respond as I don't have enough posts. If you need something decompiled I am happy to help, best to post what you need here and I will take a look at it for you.

 

Thanks

 

AKN

Posted

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 ;)

Posted (edited)
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

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


×
×
  • Create New...