Jump to content

iwjw

Members
  • Posts

    706
  • Joined

  • Last visited

  • Days Won

    2

Reputation Activity

  1. Like
    iwjw got a reaction from fatherloko in Supreme Complexity   
    This is the educated version:

    http://[email protected]/file/PTREHuzd/SC_edu.html
  2. Like
    iwjw got a reaction from agent6 in Supreme Complexity   
    This is the educated version:

    http://[email protected]/file/PTREHuzd/SC_edu.html
  3. Like
    iwjw reacted to ⭐ fxknight in Supreme Complexity   
    Here is the entire enchilada and with externalized SL and TP. It is to be ran on M15 as per their posted backtests. For some reason I cannot reproduce the backtest reports they post on their website. Is it a hoax? I truly don't know.. you can run your own backtests and decide. Actually I like all the bonuses more than the EA itself!
     
    Enjoy! http://www.multiupload.com/O5W0XG4GVL
     
    Cheers
  4. Like
    iwjw got a reaction from t2g in Supreme Complexity   
    This is the educated version:

    http://[email protected]/file/PTREHuzd/SC_edu.html
  5. Like
    iwjw got a reaction from savasava in Supreme Complexity   
    This is the educated version:

    http://[email protected]/file/PTREHuzd/SC_edu.html
  6. Like
    iwjw reacted to inko.gnito in forex legend   
    What I got so far is that 2 URLs are accessed when you run the EAs:
    http://fapturbo.com/gmt.php
    http://forexlegend.com/access/fl.php?
     
    I decompiled the dll file, however my c skills are very limited. What I found out by sniffing is that the dll calls the latter URL like the following:
    http://forexlegend.com/access/fl.php?file=ForexLegendTrendFollower:1.00&base=11111111&acct=11111&type=0&code=911
    same is with the Scalper
    http://forexlegend.com/access/fl.php?file=ForexLegendScalper:1.00&base=11111111&acct=11111&type=0&code=911
    type is demo, there you should pass over 0
    code is the authentication code which I have no clue of
    acct is the account number
    If you call the url in your browser you get the following:
    00000000|ForexLegendTrendFollower Disabled|ForexLegendTrendFollower is disabled due to invalid authentication details
    If you pass at least a correct base-number you get:
    11111111|ForexLegendTrendFollower Disabled|ForexLegendTrendFollower is disabled because the receipt number is incorrect
    The first 8 digits are a number I changed also.
     
    I changed the base-number to 8 times a 1. It differs from machine to machine so this could be some kind of machine id.
     
    What I found so far in the c-code is that the open buy and the can_open functions also call the Activate function. Therefore these 2 functions have to be completely rewritten in the mql code and the call of function call Activate in mql has to be removed. That may do the trick.
    Perhaps also the GetState() response has to be altered, but that seems to be just visual cosmetic.
     
    If that does not work maybe one can find out what the valid the response for the call of their php file is. Then like the trick with Ninja Trader you could run a local webserver that will respond with this value. I already tested it with a simle 1 as response, but that did not work.
  7. Like
    iwjw got a reaction from wakjoe in (Share) Forex 96   
    try this one:

    http://www.4shared.com/file/E5lC8jjA/Forex96v1_full.html
  8. Like
    iwjw got a reaction from Freddie in (Share) Forex 96   
    try this one:

    http://www.4shared.com/file/E5lC8jjA/Forex96v1_full.html
  9. Like
    iwjw got a reaction from daveg1 in (Share) Forex 96   
    try this one:

    http://www.4shared.com/file/E5lC8jjA/Forex96v1_full.html
  10. Like
    iwjw got a reaction from noone22 in (Share) Forex 96   
    try this one:

    http://www.4shared.com/file/E5lC8jjA/Forex96v1_full.html
  11. Like
    iwjw got a reaction from FreddyFX in (Share) Forex 96   
    try this one:

    http://www.4shared.com/file/E5lC8jjA/Forex96v1_full.html
  12. Like
    iwjw got a reaction from cacus in forex legend   
    Next one:
    Legend Trendfollower EA:
    int RecuperarOrdenes() {
    int l_count_0 = 0;
    for (int l_pos_4 = OrdersHistoryTotal() - 1; l_pos_4 >= 0; l_pos_4--) {
    if (OrderSelect(l_pos_4, SELECT_BY_POS, MODE_HISTORY)) {
    if (OrderMagicNumber() != g_magic_176 || OrderSymbol() != Symbol()) continue;
    ContarBalance(OrderProfit());
    l_count_0++;
    }
    }
    return (l_count_0);
    }
     
    MACCImo EA:
    int RecuperarOrdenes() {
    int contador = 0;
    for (int i = OrdersHistoryTotal() - 1; i >= 0; i--) {
    if (OrderSelect(i, SELECT_BY_POS, MODE_HISTORY)) {
    if (OrderMagicNumber() != Magic || OrderSymbol()!=Symbol()) continue;
    ContarBalance(OrderProfit());
    contador++;
    }
    }
    return (contador);
    }
     
    Legend isn't using this function but they even didn't delete it or rename it with an english expression
    What a shame those guys are
     
    edit: correction, they are using this functionality
  13. Like
    iwjw got a reaction from cacus in forex legend   
    Legend Trendfollower EA:
    double l_icci_60 = iCCI(NULL, 0, g_period_276, PRICE_CLOSE, 0);
    double l_icci_68 = iCCI(NULL, 0, g_period_276, PRICE_CLOSE, 1);
    double l_ima_76 = iMA(NULL, 0, g_period_292, 0, MODE_SMA, PRICE_MEDIAN, 0);
    double l_ima_84 = iMA(NULL, 0, g_period_292, 0, MODE_SMA, PRICE_MEDIAN, 1);
    double l_ima_92 = iMA(NULL, 0, g_period_300, 0, MODE_SMA, PRICE_MEDIAN, 0);
    double l_ima_100 = iMA(NULL, 0, g_period_300, 0, MODE_SMA, PRICE_MEDIAN, 1);
    double l_ima_108 = iMA(NULL, 0, g_period_308, 0, MODE_SMA, PRICE_MEDIAN, 0);
    double l_ima_116 = iMA(NULL, 0, g_period_308, 0, MODE_SMA, PRICE_MEDIAN, 1);
     
    MACCImo EA
    double CCI1 = iCCI(NULL, 0, PerCCI1, PRICE_CLOSE, 0);
    double CCI2 = iCCI(NULL, 0, PerCCI1, PRICE_CLOSE, 1);
    double IMA11 = iMA(NULL, 0, PerIMA1, 0, MODE_SMA, PRICE_MEDIAN, 0);
    double IMA12 = iMA(NULL, 0, PerIMA1, 0, MODE_SMA, PRICE_MEDIAN, 1);
    double IMA21 = iMA(NULL, 0, PerIMA2, 0, MODE_SMA, PRICE_MEDIAN, 0);
    double IMA22 = iMA(NULL, 0, PerIMA2, 0, MODE_SMA, PRICE_MEDIAN, 1);
    double IMA31 = iMA(NULL, 0, PerIMA3, 0, MODE_SMA, PRICE_MEDIAN, 0);
    double IMA32 = iMA(NULL, 0, PerIMA3, 0, MODE_SMA, PRICE_MEDIAN, 1);
     
    Any questions?
  14. Like
    iwjw got a reaction from cacus in forex legend   
    Anyone BT'ed this one for 2008 when everything crashed and burnt?
    lol..10k->900k using cacus_maccimo2_eurusd_m15_08-oct09.set
    But you would need balls made of steal to go live with it....
    I like it so far
  15. Like
    iwjw got a reaction from radicaltour in forex legend   
    Next one:
    Legend Trendfollower EA:
    int RecuperarOrdenes() {
    int l_count_0 = 0;
    for (int l_pos_4 = OrdersHistoryTotal() - 1; l_pos_4 >= 0; l_pos_4--) {
    if (OrderSelect(l_pos_4, SELECT_BY_POS, MODE_HISTORY)) {
    if (OrderMagicNumber() != g_magic_176 || OrderSymbol() != Symbol()) continue;
    ContarBalance(OrderProfit());
    l_count_0++;
    }
    }
    return (l_count_0);
    }
     
    MACCImo EA:
    int RecuperarOrdenes() {
    int contador = 0;
    for (int i = OrdersHistoryTotal() - 1; i >= 0; i--) {
    if (OrderSelect(i, SELECT_BY_POS, MODE_HISTORY)) {
    if (OrderMagicNumber() != Magic || OrderSymbol()!=Symbol()) continue;
    ContarBalance(OrderProfit());
    contador++;
    }
    }
    return (contador);
    }
     
    Legend isn't using this function but they even didn't delete it or rename it with an english expression
    What a shame those guys are
     
    edit: correction, they are using this functionality
  16. Like
    iwjw got a reaction from suryadi in (Share) Forex 96   
    try this one:

    http://www.4shared.com/file/E5lC8jjA/Forex96v1_full.html
  17. Like
    iwjw got a reaction from ummo in (Share) Forex 96   
    try this one:

    http://www.4shared.com/file/E5lC8jjA/Forex96v1_full.html
  18. Like
    iwjw reacted to ForexExpert in (Share) Forex 96   
    Site is : www.forex96.com , link from rapidshare : http://rapidshare.com/files/409856712/Forex96v1_full.zip
  19. Like
    iwjw got a reaction from ⭐ fscrp in forex legend   
    Next one:
    Legend Trendfollower EA:
    int RecuperarOrdenes() {
    int l_count_0 = 0;
    for (int l_pos_4 = OrdersHistoryTotal() - 1; l_pos_4 >= 0; l_pos_4--) {
    if (OrderSelect(l_pos_4, SELECT_BY_POS, MODE_HISTORY)) {
    if (OrderMagicNumber() != g_magic_176 || OrderSymbol() != Symbol()) continue;
    ContarBalance(OrderProfit());
    l_count_0++;
    }
    }
    return (l_count_0);
    }
     
    MACCImo EA:
    int RecuperarOrdenes() {
    int contador = 0;
    for (int i = OrdersHistoryTotal() - 1; i >= 0; i--) {
    if (OrderSelect(i, SELECT_BY_POS, MODE_HISTORY)) {
    if (OrderMagicNumber() != Magic || OrderSymbol()!=Symbol()) continue;
    ContarBalance(OrderProfit());
    contador++;
    }
    }
    return (contador);
    }
     
    Legend isn't using this function but they even didn't delete it or rename it with an english expression
    What a shame those guys are
     
    edit: correction, they are using this functionality
  20. Like
    iwjw got a reaction from expat1967 in forex legend   
    Next one:
    Legend Trendfollower EA:
    int RecuperarOrdenes() {
    int l_count_0 = 0;
    for (int l_pos_4 = OrdersHistoryTotal() - 1; l_pos_4 >= 0; l_pos_4--) {
    if (OrderSelect(l_pos_4, SELECT_BY_POS, MODE_HISTORY)) {
    if (OrderMagicNumber() != g_magic_176 || OrderSymbol() != Symbol()) continue;
    ContarBalance(OrderProfit());
    l_count_0++;
    }
    }
    return (l_count_0);
    }
     
    MACCImo EA:
    int RecuperarOrdenes() {
    int contador = 0;
    for (int i = OrdersHistoryTotal() - 1; i >= 0; i--) {
    if (OrderSelect(i, SELECT_BY_POS, MODE_HISTORY)) {
    if (OrderMagicNumber() != Magic || OrderSymbol()!=Symbol()) continue;
    ContarBalance(OrderProfit());
    contador++;
    }
    }
    return (contador);
    }
     
    Legend isn't using this function but they even didn't delete it or rename it with an english expression
    What a shame those guys are
     
    edit: correction, they are using this functionality
  21. Like
    iwjw got a reaction from xenu in forex legend   
    Next one:
    Legend Trendfollower EA:
    int RecuperarOrdenes() {
    int l_count_0 = 0;
    for (int l_pos_4 = OrdersHistoryTotal() - 1; l_pos_4 >= 0; l_pos_4--) {
    if (OrderSelect(l_pos_4, SELECT_BY_POS, MODE_HISTORY)) {
    if (OrderMagicNumber() != g_magic_176 || OrderSymbol() != Symbol()) continue;
    ContarBalance(OrderProfit());
    l_count_0++;
    }
    }
    return (l_count_0);
    }
     
    MACCImo EA:
    int RecuperarOrdenes() {
    int contador = 0;
    for (int i = OrdersHistoryTotal() - 1; i >= 0; i--) {
    if (OrderSelect(i, SELECT_BY_POS, MODE_HISTORY)) {
    if (OrderMagicNumber() != Magic || OrderSymbol()!=Symbol()) continue;
    ContarBalance(OrderProfit());
    contador++;
    }
    }
    return (contador);
    }
     
    Legend isn't using this function but they even didn't delete it or rename it with an english expression
    What a shame those guys are
     
    edit: correction, they are using this functionality
  22. Like
    iwjw got a reaction from scorpion in forex legend   
    Next one:
    Legend Trendfollower EA:
    int RecuperarOrdenes() {
    int l_count_0 = 0;
    for (int l_pos_4 = OrdersHistoryTotal() - 1; l_pos_4 >= 0; l_pos_4--) {
    if (OrderSelect(l_pos_4, SELECT_BY_POS, MODE_HISTORY)) {
    if (OrderMagicNumber() != g_magic_176 || OrderSymbol() != Symbol()) continue;
    ContarBalance(OrderProfit());
    l_count_0++;
    }
    }
    return (l_count_0);
    }
     
    MACCImo EA:
    int RecuperarOrdenes() {
    int contador = 0;
    for (int i = OrdersHistoryTotal() - 1; i >= 0; i--) {
    if (OrderSelect(i, SELECT_BY_POS, MODE_HISTORY)) {
    if (OrderMagicNumber() != Magic || OrderSymbol()!=Symbol()) continue;
    ContarBalance(OrderProfit());
    contador++;
    }
    }
    return (contador);
    }
     
    Legend isn't using this function but they even didn't delete it or rename it with an english expression
    What a shame those guys are
     
    edit: correction, they are using this functionality
  23. Like
    iwjw got a reaction from halcyonn in forex legend   
    Next one:
    Legend Trendfollower EA:
    int RecuperarOrdenes() {
    int l_count_0 = 0;
    for (int l_pos_4 = OrdersHistoryTotal() - 1; l_pos_4 >= 0; l_pos_4--) {
    if (OrderSelect(l_pos_4, SELECT_BY_POS, MODE_HISTORY)) {
    if (OrderMagicNumber() != g_magic_176 || OrderSymbol() != Symbol()) continue;
    ContarBalance(OrderProfit());
    l_count_0++;
    }
    }
    return (l_count_0);
    }
     
    MACCImo EA:
    int RecuperarOrdenes() {
    int contador = 0;
    for (int i = OrdersHistoryTotal() - 1; i >= 0; i--) {
    if (OrderSelect(i, SELECT_BY_POS, MODE_HISTORY)) {
    if (OrderMagicNumber() != Magic || OrderSymbol()!=Symbol()) continue;
    ContarBalance(OrderProfit());
    contador++;
    }
    }
    return (contador);
    }
     
    Legend isn't using this function but they even didn't delete it or rename it with an english expression
    What a shame those guys are
     
    edit: correction, they are using this functionality
  24. Like
    iwjw got a reaction from t2g in forex legend   
    Next one:
    Legend Trendfollower EA:
    int RecuperarOrdenes() {
    int l_count_0 = 0;
    for (int l_pos_4 = OrdersHistoryTotal() - 1; l_pos_4 >= 0; l_pos_4--) {
    if (OrderSelect(l_pos_4, SELECT_BY_POS, MODE_HISTORY)) {
    if (OrderMagicNumber() != g_magic_176 || OrderSymbol() != Symbol()) continue;
    ContarBalance(OrderProfit());
    l_count_0++;
    }
    }
    return (l_count_0);
    }
     
    MACCImo EA:
    int RecuperarOrdenes() {
    int contador = 0;
    for (int i = OrdersHistoryTotal() - 1; i >= 0; i--) {
    if (OrderSelect(i, SELECT_BY_POS, MODE_HISTORY)) {
    if (OrderMagicNumber() != Magic || OrderSymbol()!=Symbol()) continue;
    ContarBalance(OrderProfit());
    contador++;
    }
    }
    return (contador);
    }
     
    Legend isn't using this function but they even didn't delete it or rename it with an english expression
    What a shame those guys are
     
    edit: correction, they are using this functionality
  25. Like
    iwjw reacted to halcyonn in forex legend   
    Hi,the eas need proper education and decompilation.enjoy all!
     
    http://www.multiupload.com/IRP9MUDG36 Legend follower
     
    http://www.multiupload.com/YIR80TG4MJ Legend scalper
×
×
  • Create New...