robbyg Posted January 23, 2011 Report Share Posted January 23, 2011 (edited) Anyone decompile and educate this ea? EA & DLL: hxxp://www*4shared*com/file/IolVHZjX/ForexRealProfitEA_Demo.html hxxp://www*4shared*com/file/jFtduZ-T/FRP-EA.html indicators: hxxp://www*4shared*com/file/aHVWrgkD/Bands.html hxxp://www*4shared*com/file/XtsS8c5N/OsMA.html Thanks! Edited January 23, 2011 by robbyg Quote Link to comment Share on other sites More sharing options...
ho3ain190 Posted January 23, 2011 Report Share Posted January 23, 2011 my expert now only get for example with 2000$ deposit 0.1 RISK -------> 0.01 lot 0.2 RISK -------> 0.01 lot 0.3 RISK --------> 0.1 LOT !!! 0.1 is too high and 0.01 is too low , i interesting insert "manuals lot" independent of risk for example 0.03 lot .... can ? thanks plz help me Quote Link to comment Share on other sites More sharing options...
⭐ musketeer Posted January 23, 2011 Report Share Posted January 23, 2011 plz help me here it is http://www.mediafire.com/?3jh1mugnyx6iw17 ho3ain190 1 Quote Link to comment Share on other sites More sharing options...
ho3ain190 Posted January 23, 2011 Report Share Posted January 23, 2011 here it is http://www.mediafire.com/?3jh1mugnyx6iw17 its work with optional Lot ? for exp : i can put 0.02 or 0.03 lot ? Quote Link to comment Share on other sites More sharing options...
⭐ musketeer Posted January 23, 2011 Report Share Posted January 23, 2011 its work with optional Lot ? for exp : i can put 0.02 or 0.03 lot ? nope, risk based, but better one :) try it ho3ain190 1 Quote Link to comment Share on other sites More sharing options...
⭐ musketeer Posted January 23, 2011 Report Share Posted January 23, 2011 Hello Musketeer, could you give me a hint (or program lines), how to bring a "close all open Orders at ....time" in an EA? Is it difficult to do something like that? http://forum.mql4.com/37823 http://www.seputarforex.com/eng/metatrader/mt4_scripts/close_order_mql4.php look at the OrderOpenTime() function, add the relevant number of seconds to the return value and when that time arrives call OrderClose() Make-a-million 1 Quote Link to comment Share on other sites More sharing options...
halcyonn Posted January 23, 2011 Report Share Posted January 23, 2011 Anyone can insert an external for magic number please? //+------------------------------------------------------------------+ //| Copyright 2006, Malinouski Yury | //| mailto:[email protected] | //| version 4.0 | //| 01.04.2006 | //+------------------------------------------------------------------+ // Çà îñíîâó âçÿò ýêñïåðò MA cross.mq4 (àâòîð Alexey42) // Äîáàâëåíû ñëåäóþùèå ïàðàìåòðû: ma_method, TrailingStop, applied_price // Ýêñïåðò îòêðûâàåò è çàêðûâàåò ïîçèöèè ïî ôàêòó ïåðåñå÷åíèÿ ñðåäíèõ // Êòî ñìîæåò ðåàëèçîâàòü âûñòàâëåíèå stop_loss ïî ïàðàáîëèêó? extern int ma_fast=8; // Ïåðèîä áûñòðîé ÌÀ extern int ma_slow=21; // Ïåðèîä ìåäëåííîé ÌÀ extern double ma_method=1;/*MODE_SMA 0 Ïðîñòîå ñêîëüçÿùåå ñðåäíåå MODE_EMA 1 Ýêñïîíåíöèàëüíîå ñêîëüçÿùåå ñðåäíåå MODE_SMMA 2 Ñãëàæåííîå ñêîëüçÿùåå ñðåäíåå MODE_LWMA 3 Ëèíåéíî-âçâåøåííîå ñêîëüçÿùåå ñðåäíåå */ extern int stop_loss=110; extern int take_profit=370; extern double TrailingStop=110; extern double applied_price=0;/*PRICE_CLOSE 0 Öåíà çàêðûòèÿ PRICE_OPEN 1 Öåíà îòêðûòèÿ PRICE_HIGH 2 Ìàêñèìàëüíàÿ öåíà PRICE_LOW 3 Ìèíèìàëüíàÿ öåíà PRICE_MEDIAN 4 Ñðåäíÿÿ öåíà, (high+low)/2 PRICE_TYPICAL 5 Òèïè÷íàÿ öåíà, (high+low+close)/3 PRICE_WEIGHTED 6 Âçâåøåííàÿ öåíà çàêðûòèÿ, (high+low+close+close)/4 */ extern int ma_shifft=0; // Ñäâèã èíäèêàòîðà îòíîñèòåëüíî öåíîâîãî ãðàôèêà extern double Lots=0.1; double m1=1; double m2=1; double s1=1; double s2=1; double b=1; int cnt=0; //------------------------------------------------------------------------------------------------------------- int start() { if (b<Bars) { m1=iMA(NULL,0,ma_fast, ma_shifft, ma_method, applied_price, 1); m2=iMA(NULL,0,ma_fast, ma_shifft, ma_method, applied_price, 2); s1=iMA(NULL,0,ma_slow, ma_shifft, ma_method, applied_price, 1); s2=iMA(NULL,0,ma_slow, ma_shifft, ma_method, applied_price, 2); if (OrdersTotal()<1) { if ((s2>m2)&&(s1<m1)) { OrderSend(Symbol(),OP_BUY,Lots,Ask,3,Ask-stop_loss*Point,Ask+take_profit*Point,"buy60",1221,0,Blue); b=Bars; } if ((s2<m2)&&(s1>m1)) { OrderSend(Symbol(),OP_SELL,Lots,Bid,3,Bid+stop_loss*Point,Bid-take_profit*Point,"sell60",1222,0,Red); b=Bars; } } for(cnt=0;cnt<4;cnt++) { OrderSelect(cnt, SELECT_BY_POS, MODE_TRADES); if(OrderType()<=OP_SELL && // check for opened position OrderSymbol()==Symbol()) // check for symbol { if(OrderType()==OP_BUY) // long position is opened { // should it be closed? if ((s2<m2)&&(s1>m1)&&(b<Bars)) {b=Bars; OrderClose(OrderTicket(),OrderLots(),Bid,3,Violet); // close position OrderSend(Symbol(),OP_SELL,Lots,Bid,3,Bid+stop_loss*Point,Bid-take_profit*Point,"sell60",1222,0,Red); return(0); // exit } // check for trailing stop if(TrailingStop>0) { if(Bid-OrderOpenPrice()>Point*TrailingStop) { if(OrderStopLoss()<Bid-Point*TrailingStop) { OrderModify(OrderTicket(),OrderOpenPrice(),Bid-Point*TrailingStop,OrderTakeProfit(),0,Green); return(0); } } } } else // go to short position { // should it be closed? if ((s2>m2)&&(s1<m1)&&(b<Bars)) {b=Bars; OrderClose(OrderTicket(),OrderLots(),Ask,3,Violet); // close position OrderSend(Symbol(),OP_BUY,Lots,Ask,3,Ask-stop_loss*Point,Ask+take_profit*Point,"buy60",1221,0,Blue); return(0); // exit } // check for trailing stop if(TrailingStop>0) { if((OrderOpenPrice()-Ask)>(Point*TrailingStop)) { if((OrderStopLoss()>(Ask+Point*TrailingStop)) || (OrderStopLoss()==0)) { OrderModify(OrderTicket(),OrderOpenPrice(),Ask+Point*TrailingStop,OrderTakeProfit(),0,Red); return(0); } } } } } } //---- return(0); } } Quote Link to comment Share on other sites More sharing options...
⭐ musketeer Posted January 23, 2011 Report Share Posted January 23, 2011 Anyone can insert an external for magic number please? //+------------------------------------------------------------------+ } Hi Halcyonn, if you get this with bracket or put it somewhere in its original will be easier... halcyonn 1 Quote Link to comment Share on other sites More sharing options...
halcyonn Posted January 23, 2011 Report Share Posted January 23, 2011 Hi Halcyonn, if you get this with bracket or put it somewhere in its original will be easier... thanx Musketeer,i will try that! Quote Link to comment Share on other sites More sharing options...
halcyonn Posted January 23, 2011 Report Share Posted January 23, 2011 No sir,its compiling with errors.i would request the ea with magin number again! Quote Link to comment Share on other sites More sharing options...
⭐ musketeer Posted January 24, 2011 Report Share Posted January 24, 2011 (edited) No sir,its compiling with errors.i would request the ea with magin number again! http://www.mediafire.com/?mamvyg8e1zbw78t * it is not ecn compatible Edited January 24, 2011 by musketeer taipan and halcyonn 2 Quote Link to comment Share on other sites More sharing options...
tongtoro Posted January 24, 2011 Report Share Posted January 24, 2011 hi, dear decompiler man please open this file http://hotfile.com/dl/99088323/a5f61e0/STWs.ex4.html my decompiler 224 cannot open this file. thanks Quote Link to comment Share on other sites More sharing options...
⭐ musketeer Posted January 24, 2011 Report Share Posted January 24, 2011 hi, dear decompiler man please open this file http://hotfile.com/dl/99088323/a5f61e0/STWs.ex4.html my decompiler 224 cannot open this file. thanks yeah, it is protected Quote Link to comment Share on other sites More sharing options...
alexdm Posted January 24, 2011 Report Share Posted January 24, 2011 (edited) hi, dear decompiler man please open this file http://hotfile.com/dl/99088323/a5f61e0/STWs.ex4.html my decompiler 224 cannot open this file. thanks It's "_SteadyWinner V3_" "Version 4" is here EX http://www.mediafire.com/?ao4daj7gb0ldub7 MQ http://www.mediafire.com/?h66zt0lwhv64gdi Edited January 24, 2011 by alexdm Quote Link to comment Share on other sites More sharing options...
pro Posted January 25, 2011 Report Share Posted January 25, 2011 (edited) Does someone have the version 2.3 of fOrEx hAcKeD available?[-O< Don't post it, its blacklisted. Just pm me plz Edited January 25, 2011 by pro Quote Link to comment Share on other sites More sharing options...
Guest maskumareshraja Posted January 25, 2011 Report Share Posted January 25, 2011 Hello my dear frend's This is one good EA here,But backtest repoting is balance only show equity not come pl correct and work it friends!.. I NEED YOUR SUPPORT AND HELPS Link is here: http://forexsystems.ru/attachment.php?attachmentid=17935&d=1278500483 Pl help me my problems. Thank you maskumareshraja Quote Link to comment Share on other sites More sharing options...
⭐ musketeer Posted January 25, 2011 Report Share Posted January 25, 2011 Hello my dear frend's This is one good EA here,But backtest repoting is balance only show equity not come pl correct and work it friends!.. I NEED YOUR SUPPORT AND HELPS Link is here: http://forexsystems.ru/attachment.php?attachmentid=17935&d=1278500483 Pl help me my problems. Thank you maskumareshraja it backtests ok, do not understand what you need. can you put some picture? Quote Link to comment Share on other sites More sharing options...
pro Posted January 25, 2011 Report Share Posted January 25, 2011 Does someone have the version 2.3 of fOrEx hAcKeD available?[-O< Don't post it, its blacklisted. Just pm me plz its a cash cow..(i know, i know, its marty...) http://www.myfxbook.com/members/boysweetcrazy/forex-hacked-23/76509 anyone trades it here? Quote Link to comment Share on other sites More sharing options...
Guest maskumareshraja Posted January 25, 2011 Report Share Posted January 25, 2011 this EA work very fine but this ea is specific range order again again repet ex; 0.1 lot again 0.1 more then 0.1 magic no is defrent again again so one time one order 0.1 lot and do not order in same lot pls see the order list =http://www.multiupload.com/TLXL7G4GUB EA link http://www.multiupload.com/8D4P05S1XS Quote Link to comment Share on other sites More sharing options...
Guest maskumareshraja Posted January 25, 2011 Report Share Posted January 25, 2011 dear sir this EA is only backtest reselt but not working on REAL AND DEMO ACCOUNT if any EA'S backtest report TesterGraph balance/Equity every tick(the most precise method based on all available least time frames to generate each tick) so pls work on REAL AND DEMO change the EA SORRY FOR THE DISTRAPENCE AND bad english Quote Originally Posted by maskumareshraja View Post Hello my dear frend's This is one good EA here,But backtest repoting is balance only show equity not come pl correct and work it friends!.. I NEED YOUR SUPPORT AND HELPS Link is here: http://forexsystems.ru/attachment.php?attachmentid=17935&d=1278500483 Pl help me my problems. Thank you maskumareshraja see the report and testgraph http://www.multiupload.com/0KXJ0YT7HH Quote Link to comment Share on other sites More sharing options...
a476713 Posted January 25, 2011 Report Share Posted January 25, 2011 Can someone make these 2 EAs ECN compatible? Many thanks http://www.megaupload.com/?d=IEQ46T27 Quote Link to comment Share on other sites More sharing options...
Guest maskumareshraja Posted January 28, 2011 Report Share Posted January 28, 2011 Please modify this ea EA link http://www.multiupload.com/8D4P05S1XS THIS IS EA WORK VERY FINE BUT SOMEMODIFICATION NEEDED I WILL EXPLAIN EA WORKS STEP 1:19PIPS STEP2:10PIPS HEDGE;TRUE THAT IS EA OPEN TRADE ON 19 PIPS GAP IN I STEP AND 10PIPS GAP OPEN TRADE IN 2ND STEP BUT MARKET REVERSE MEANS AND TOUCH THE SAME OPEN POSITION AND AGAIN SAME 19 PIPS GAP AND 10PIP GAP OPEN ORDER THIS REVERSE WAS NOT WANTED PLEASE MODIFY THE AGAIN ORDER I EXPECTING YOUR KINDFULL COOPERATION THANKING YOU Quote Link to comment Share on other sites More sharing options...
cnuse Posted January 30, 2011 Report Share Posted January 30, 2011 Please decompile this EA. Then I can educate it. Thanks. http://www.4shared.com/file/T_j7gLvk/KangarooEAv41.html Quote Link to comment Share on other sites More sharing options...
a476713 Posted January 30, 2011 Report Share Posted January 30, 2011 Can someone make these 2 EAs ECN compatible? Many thanks http://www.megaupload.com/?d=IEQ46T27 Hello, Could somebody please have a look at these to make them ECN compatible? Quote Link to comment Share on other sites More sharing options...
cnuse Posted January 30, 2011 Report Share Posted January 30, 2011 (edited) Hello, a476713:By chance, I saw your request. I finished one in a rush. I cannot test them since you did not include manuals. But take note that that EA does not detect 4 digit or 5 digit. I just change all ordersend() to be compatible with ECN. http://www.4shared.com/file/xekj1ajg/GRU.html Can anyone decompile this EA? http://www.4shared.com/file/T_j7gLvk/KangarooEAv41.html Then I can educate it. Edited February 1, 2011 by cnuse Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.