Jump to content

muruku

Members
  • Posts

    183
  • Joined

  • Last visited

Posts posted by muruku

  1. i skimmed thru my MDP EU trade past results , measured respective whopping spikes whether its finally earn or lost.

    Bluntly to tell, when the highest point vs lowest point of a stick < 30 pips, the stick alikely retrace slow or continue advancing more , that if MDP started to rope on trading, will potentially not giving any advantages since this is a retracement scalper...

     

    l want to share some script workaround for MillionDollarPipsEURUSD_1.2.0_file.mq4 as below...

    that only instruct MDP to start watch & act on if seeing anyone of aggressive sticks (>X pips) occurs in a monitoring window consists of current & the past 8 formed candlestick.

     

    Still I couldn't have conclusive value of what should be the best "MyGap" on live trades where it will bring better trade results...

    I let the traders to review & modify if my points make sense :)

     

     

    extern double MyGap = 29; // above 36 is good oredi based on BACKTEST !!!!!

    ...

    ....

     

    // Print("WARNING M1 Graph gap found " + TimeToStr(datetime_76) + " offset:" + li_0); <-- remove all these warning printout

     

    void f0_6(int ai_0, int ai_4, int ai_8, int ai_12, int ai_16, bool ai_20, double ad_24, double ad_32, double ad_40, double ad_48, double ad_56, double ad_64, double ad_72, double ad_80, double ad_88, double ad_96, double ad_104, int ai_112, double ad_116, double ada_124[5000]) {

     

     

    int ticket_136;

    string var_name_204;

    double ibands_212;

    double ibands_220;

    double ihigh_228;

    double ilow_236;

    double ld_244;

    double lda_260[2];

    double ld_304;

    double ld_312;

    int li_320;

    double ld_324;

    double ld_332;

    double ld_unused_356;

    int li_364;

    double ld_368;

    double ld_376;

    int li_396;

    bool li_444;

    switch (ai_4) {

    case 15:

    ihigh_228 = g_ihigh_1580;

    ilow_236 = g_ilow_1588;

    ld_244 = gd_1596;

    break;

    case 5:

    ihigh_228 = g_ihigh_1556;

    ilow_236 = g_ilow_1564;

    ld_244 = gd_1572;

    break;

    case 1:

    ihigh_228 = g_ihigh_1532;

    ilow_236 = g_ilow_1540;

    ld_244 = gd_1548;

    }

    switch (ai_8) {

    case 0:

    ibands_212 = g_ibands_1604;

    ibands_220 = g_ibands_1612;

    break;

    case 3:

    ibands_212 = g_ibands_1620;

    ibands_220 = g_ibands_1628;

    break;

    case 6:

    ibands_212 = g_ibands_1636;

    ibands_220 = g_ibands_1644;

    break;

    case 9:

    ibands_212 = g_ibands_1652;

    ibands_220 = g_ibands_1660;

    break;

    case 12:

    ibands_212 = g_ibands_1668;

    ibands_220 = g_ibands_1676;

    }

    lda_260[0] = ad_64;

    lda_260[1] = ad_80;

    f0_0(lda_260);

    ad_64 = lda_260[0];

    ad_80 = lda_260[1];

    double ld_264 = ibands_212 - ibands_220;

    double ld_272 = ibands_220 + ld_264 / 2.0;

    double ld_280 = gd_780;

    double ld_288 = 0.00001 * ad_104;

    double ld_296 = Trailing_Resolution / 10000.0;

    ld_288 = MathMax(ld_288, gd_1716);

    NumOrders_Level = MathMax(0, NumOrders_Level);

    NumOrders_Level = MathMin(4, NumOrders_Level);

    if (!HighLow()) return; <-- insert here...

     

    ....

    ....

     

     

     

    bool HighLow(){

     

     

    bool result = false;

     

    //RefreshRates();

    ihigh_0 = iHigh(Symbol(), PERIOD_M1, 0);

    ilow_0 = iLow(Symbol(), PERIOD_M1, 0);

    gap_0 = (ihigh_0 - ilow_0)*10000;

     

    ihigh_1 = iHigh(Symbol(), PERIOD_M1, 1);

    ilow_1 = iLow(Symbol(), PERIOD_M1, 1);

    gap_1 = (ihigh_1 - ilow_1)*10000;

     

    ihigh_2 = iHigh(Symbol(), PERIOD_M1, 2);

    ilow_2 = iLow(Symbol(), PERIOD_M1, 2);

    gap_2 = (ihigh_2 - ilow_2)*10000;

     

    ihigh_3 = iHigh(Symbol(), PERIOD_M1, 3);

    ilow_3 = iLow(Symbol(), PERIOD_M1, 3);

    gap_3 = (ihigh_3 - ilow_3)*10000;

     

    ihigh_4 = iHigh(Symbol(), PERIOD_M1, 4);

    ilow_4 = iLow(Symbol(), PERIOD_M1, 4);

    gap_4 = (ihigh_4 - ilow_4)*10000;

     

    ihigh_5 = iHigh(Symbol(), PERIOD_M1, 5);

    ilow_5 = iLow(Symbol(), PERIOD_M1, 5);

    gap_5 = (ihigh_5 - ilow_5)*10000;

     

    ihigh_6 = iHigh(Symbol(), PERIOD_M1, 6);

    ilow_6 = iLow(Symbol(), PERIOD_M1, 6);

    gap_6 = (ihigh_6 - ilow_6)*10000;

     

    ihigh_7 = iHigh(Symbol(), PERIOD_M1, 7);

    ilow_7 = iLow(Symbol(), PERIOD_M1, 7);

    gap_7 = (ihigh_7 - ilow_7)*10000;

     

    ihigh_8 = iHigh(Symbol(), PERIOD_M1, 8);

    ilow_8 = iLow(Symbol(), PERIOD_M1, 8);

    gap_8 = (ihigh_8 - ilow_8)*10000;

     

     

    if (gap_8 >= MyGap || gap_7 >= MyGap ||gap_6 >= MyGap ||gap_5 >= MyGap || gap_4 >= MyGap || gap_3 >= MyGap || gap_2 >= MyGap || gap_1 >= MyGap || gap_0 >= MyGap) result = true;

     

    return(result);

    }

  2. my MDPGU120 started to trade today as Bank of England Minutes econ news...

    however it wasn't good..

    Another live example seen in

    ..

     

     

    Open Date Close date Symbol Action Lots SL TP Open Price Close Price Pips Profit (USD) Duration Change

    tag

    09.21.2011 11:34

    09.21.2011 11:35 GBPUSD Buy 0.02 1.56329 1.56756 1.56444 1.56329 -11.5 -2.45 1m -0.35%

    tag

    09.21.2011 11:34

    09.21.2011 11:35 GBPUSD Buy 0.02 1.56329 1.56753 1.56441 1.56329 -11.2 -2.39 1m -0.34%

    tag

    09.21.2011 11:34

    09.21.2011 11:35 GBPUSD Buy 0.02 1.56339 1.56728 1.56441 1.56339 -10.2 -2.19 1m -0.31%

    tag

    09.21.2011 11:32

    09.21.2011 11:33 GBPUSD Buy 0.02 1.56474 1.56838 1.56492 1.56474 -1.8 -0.51 1m -0.07%

    tag

    09.21.2011 11:32

    09.21.2011 11:33 GBPUSD Buy 0.02 1.56484 1.56808 1.56510 1.56484 -2.6 -0.67 1m -0.10%

    tag

    09.21.2011 11:32

    09.21.2011 11:33 GBPUSD Buy 0.02 1.56474 1.56843 1.56508 1.56474 -3.4 -0.83 1m -0.12%

    tag

    09.21.2011 11:31

    09.21.2011 11:32 GBPUSD Buy 0.02 1.56588 1.56984 1.56648 1.56588 -6.0 -1.35 31s -0.19%

    tag

    09.21.2011 11:30

    09.21.2011 11:30 GBPUSD Sell 0.02 1.56986 1.56773 1.57082 1.56868 21.4 4.13 39s 0.59%

    tag

    09.21.2011 11:30

    09.21.2011 11:30 GBPUSD Sell 0.02 1.56986 1.56773 1.57082 1.56886 19.6 3.77 37s 0.54%

  3. Dear folks !!!

     

    I heard that this EA recently was updated to v3.0... see more in myfxbook

    And, the price was also up.(old version was $69, v2.0 is $79)... as this is 1 minute scalper, the BT only able to get 25% in quality..

     

    Would like to see for experts here to look into optimizing the code to become 5 minutes scalper so that we can at least get 90% BT quality. In short 25% BT quality will somehow unconvincing in Long term profit..

     

    Attached V2 :-

    Myfxbook result :-

     

    Here's the review in

    ==============================

    Our Latest Verdict

     

    After testing the FX Voodoo for some time we have found that is a mediocre EA. It is just okay and is really not breaking any waves. At first we were impressed but not anymore. I suggest don’t waste your time with this one.

     

    The forex voodoo system uses the 1 minute time frame on any currency pair you want to trade. I am not 100% sure exactly how that will work, but this does give you the ability to test out different pairs.

     

    You can customize fx voodoos takeprofit, stoploss, hedging and other available functions. The amount recommended to start with is a minimum of $200.00. Strictly works on the metatrader 4 platform.

     

    There are a bunch of fx voodoo results available so we will show you exactly how this ea has been performing so far:

     

    The results look outstanding so far. At this point in time the EA looks like it is a strong contender.

     

    We will continue to write more fx voodoo reviews. If you have any information about this forex robot software then please feel free to leave a comment below.

     

    We think so far that it looks good but would like to hear more from all of you about fx voodoo before we give it a shot. Or we may just buy it and start testing.

×
×
  • Create New...