Maple Leaf EA (에 의해 4xFreeway)

사용자가 이 시스템을 삭제했습니다.

Maple Leaf EA 토론

Mar 06, 2011 at 19:17
788 개의 뷰
4 Replies
Apr 04, 2011 부터 멤버   게시물66
Apr 05, 2011 at 20:52 (편집됨 Apr 05, 2011 at 20:56)
Hi Can you explain the strategy a bit. I was thinking of buying this EA because the DD is so low - but why are there a couple of trades at 2 full lots when the rest are at 0.1. Seems like a recovery trade, what happens when the 2 lot trade hits SL, a 4 lot trade?...this seems a lot riskier than I thought. Thanks for your help, KK
Feb 16, 2010 부터 멤버   게시물1332
Apr 05, 2011 at 22:18 (편집됨 Apr 05, 2011 at 22:18)
Grid/martingale elements, beware! That's why there's only a demo, losing a demo account doesn't hurt.
"In trading, winning is frequently a question of luck, but losing is always a matter of skill."
Apr 04, 2011 부터 멤버   게시물66
Apr 05, 2011 at 22:43
Thanks Solar, I was hoping for the EA author to respond but maybe you can help - what do you see that makes you think it is a grid / martingale strategy? Yes it doesn't show much faith if its only demo - that's true. Lets hope the author responds to this.
Oct 11, 2010 부터 멤버   게시물2
Apr 06, 2011 at 21:10
The system is a grid system which is protected by a percentage stop. There is a bug in the code that we currently putting right
Reason and Logic
Nov 27, 2010 부터 멤버   게시물244
Apr 07, 2011 at 08:24 (편집됨 Apr 07, 2011 at 08:26)
extern bool EquityStopLoss = TRUE;
extern double EquityPercent = 30; //30%

Start(){
   if(EquityStopLoss&&1-AccountEquity()/AccountBalance()>EquityPercent/100)CloseAll();
}

void CloseAll(){ //Close all orders
   bool result=false;
   for(int i=OrdersTotal()-1;i>=0;i--){
      OrderSelect(i,SELECT_BY_POS,MODE_TRADES);
      if(OrderSymbol()!=Symbol())continue;
      if(OrderMagicNumber()!=Magic)continue;
      result=OrderClose(OrderTicket(),OrderLots(),OrderClosePrice(),Slippage,Blue);
      if(result==false){
         Print('CloseAll failed with error#',GetLastError());
         continue;
      }
   }
}
-------------------------
Not to be used in conjunction with other EA's or manual positions as their floating DD/profit will contribute to the AccountEquity() and AccountBalance(), making it skewed. For that AccountEquity() and AccountBalance() would have to be loggged at the opening of the 1st position.

Edit: Indenting does not work. Sorry about the hard read.
Consistency above all.
로그인 / 가입하기 to comment
You must be connected to Myfxbook in order to leave a comment
*상업적 사용 및 스팸은 허용되지 않으며 계정이 해지될 수 있습니다.
팁: 이미지/유튜브 URL을 게시하면 게시물에 자동으로 삽입됩니다!
팁: @기호를 입력하여 이 토론에 참여하는 사용자 이름을 자동으로 완성합니다.