- घर
- कम्युनिटी
- ट्रेडींग सिस्टम
- Maple Leaf EA
Maple Leaf EA (के जरिए 4xFreeway)
यूजर ने इस सिस्टम को रद्द कर दिया है.
Edit Your Comment
Maple Leaf EA चर्चा करें
तबसे मेंबर है Apr 04, 2011
66 पोस्टों
Apr 05, 2011 at 20:52
(एडिट हो रहा है Apr 05, 2011 at 20:56)
तबसे मेंबर है Apr 04, 2011
66 पोस्टों
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)
तबसे मेंबर है Feb 16, 2010
1332 पोस्टों
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
तबसे मेंबर है Apr 04, 2011
66 पोस्टों
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.
तबसे मेंबर है Nov 27, 2010
244 पोस्टों
Apr 07, 2011 at 08:24
(एडिट हो रहा है Apr 07, 2011 at 08:26)
तबसे मेंबर है Nov 27, 2010
244 पोस्टों
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.
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.
*व्यवसायिक इस्तेमाल और स्पैम को ब्रदाश नहीं किया जाएगा, और इसका परिणाम खाता को बन्द करना भी हो सकता है.
टिप: किसी चित्र या यूट्यूब या URL को पोस्ट करने से वे अपने आप आपके पोस्ट में आजाएगा!
टिप: @ चिन्ह को टाइप करें उपभोगता के नाम को अपने आप करने के लिए जो इस चर्चा में भाग ले रहा है.