Jump to content

Recommended Posts

  • Replies 106
  • Created
  • Last Reply

Top Posters In This Topic

Posted

The first trades of my MDv1.3 won only a little.

2010.08.12 05:11 buy 0.17 eurusdfxf 1.2869 1.2808 1.2919 2010.08.12 09:42 1.2870 0 0 -73 144

2010.08.12 06:02 buy 0.16 eurusdfxf 1.2860 1.2745 1.2918 2010.08.12 09:07 1.2861 0 0   0 136

Posted
looks like md 1.3 one added an extra hour earlier or changed times... 20-22 GMT at least. MD 1.21 traded 21-23 GMT

 

 

To my observation, MD v1.30 on FXDD live starts trading from 20:00 GMT, an hour earlier than normal with MD v1.21, if AutoGMTOffset set to "true". Could the AutoGMT function on the new version be flowed? Whatever it is, would that be better to adjust GMTOffset manually?

Posted

We still don't have the news filter? On the Dinj thread they added it successfully. Just copy that. I don't understand programming otherwise I would do it. It is very important to protect the MD from negative news impact.

Hermes

  • 2 weeks later...
Posted

i backtested both, both came out exactly the same with md v1.3 being a little smoother on the curve.

 

has anyone edited this so that it will use a portion of the account instead of the whole account so it won't be affected by what other EA's are doing? code is below, but I don't know where I would add in ordercount() instead of account balance as the code is kinda confusing to me.

 

double internalbalance=3000;

extern double initialbalance=3000;

 

double ordercount() // we counting our order here

{

int historytotal=OrdersHistoryTotal();

internalbalance=initialbalance;

// total of our order

int i; // pos of our order

for ( i = 0 ; i < historytotal ; i++)

{

OrderSelect(i, SELECT_BY_POS, MODE_HISTORY);

if(OrderMagicNumber()== MMN)

{

internalbalance = internalbalance + (OrderProfit()-OrderCommission()) ;

}

 

 

}

return(internalbalance);

}

Posted
MD 1.30 is a loser. It lost lot of money on demo. Be careful. The news filter is missing. The MD .121N is working well, making money.

Hermes

 

based on what? I run it live and its been making money.

  • 2 weeks later...
  • 4 months later...
Posted

So anyone added a news filter to MD v1.3 yet??? I've been using this since Nov last year; and it's made about 20 trades with most of them winners, apart from a few that close with very small -ve pips.

Would be good with a news filter as having to manually check every day!

Posted (edited)

Added news filter to the latest MD 1.3 release from this thread. The news filter is salvaged from Shocker 2.0XE N1. I'm still very new to MQL, so could someone please review the code and confirm that "if (!AllowTrading) return;" x2 lines are placed in optimal locations (i.e. actually stop the EA from opening trades and don't cause any unnecessary loops) ?

Otherwise it seems to be working, recognises the news periods and prints "Avoiding News!" as supposed to.

 

( edit: Forced allowtrading to false for backtesting purposes. It didn't take any trades in backtest, so I guess it's working. Would still like some feedback from more capable coders )

 

DON'T USE FOR LIVE ACCOUNTS YET

Test it and post your results

 

http://[email protected]/1a5cda7c

Edited by qsam
  • 2 months later...
Posted

The link is OK but you have to chose the downloader. Click megaupload, it works. Crazy site with ever jumping pop ups. I could kill the owner! MD v1.3 is good EA but the news filter is important because EA very sensitive to news.

Hermes

  • 1 month later...
Posted

Please be very careful running MD unless you have it running with a news filter. It can have some huge losses. In the past few days it has blown over 60% of the account balance.

 

http://www.mt4i.com/users/megadroid-bfr

 

 

I have made a post with the various editions with sets. If you search my username you may find these editions. I have also corrected the FFCal news filter indicator in another post, so you will have to replace the existing one with the sets

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

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...