anton1713006147 Posted April 12, 2013 Report Share Posted April 12, 2013 Please help to decompile this great indi. http://www.mediafire.com/?i2ube6tvth1mafl Thank you Quote Link to comment Share on other sites More sharing options...
shabz Posted April 12, 2013 Report Share Posted April 12, 2013 Why don't you explain what you mean by a great indi ? Can you do a screenshot ? Quote Link to comment Share on other sites More sharing options...
anton1713006147 Posted April 12, 2013 Author Report Share Posted April 12, 2013 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 Quote Link to comment Share on other sites More sharing options...
mambo123 Posted April 13, 2013 Report Share Posted April 13, 2013 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 Quote Link to comment Share on other sites More sharing options...
aknforex Posted April 13, 2013 Report Share Posted April 13, 2013 http://www.4shared.com/file/73SSWbHN/EYANG_PANAH_H1.html Decompiled, I can't see any protection, AKN anton1713006147 and ⭐ Tradeselect 2 Quote Link to comment Share on other sites More sharing options...
mambo123 Posted April 13, 2013 Report Share Posted April 13, 2013 (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 April 13, 2013 by mambo123 anton1713006147 1 Quote Link to comment Share on other sites More sharing options...
aknforex Posted April 13, 2013 Report Share Posted April 13, 2013 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 Quote Link to comment Share on other sites More sharing options...
aknforex Posted April 13, 2013 Report Share Posted April 13, 2013 Craven my Dear, Your files are here decompiled http://www.4shared.com/folder/xe3qb6vF/My_4shared_Sync.html Thanks AKN Quote Link to comment Share on other sites More sharing options...
Danny Posted April 14, 2013 Report Share Posted April 14, 2013 Craven my Dear, Your files are here decompiled http://www.4shared.com/folder/xe3qb6vF/My_4shared_Sync.html Thanks AKN Thanks AKN for your effort Really appreciated ..... Craven, can you please look at the RSI_V2 it doesn't show anything on chart ! Thanks Danny Quote Link to comment Share on other sites More sharing options...
anton1713006147 Posted April 14, 2013 Author Report Share Posted April 14, 2013 Thank you aknforex. regards, Anton http://www.4shared.com/file/73SSWbHN/EYANG_PANAH_H1.html Decompiled, I can't see any protection, AKN Quote Link to comment Share on other sites More sharing options...
anton1713006147 Posted April 14, 2013 Author Report Share Posted April 14, 2013 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 ;) Quote Link to comment Share on other sites More sharing options...
mambo123 Posted April 14, 2013 Report Share Posted April 14, 2013 (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 April 14, 2013 by mambo123 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.