- #80
- Jun 11, 2019 7:03pm Jun 11, 2019 7:03pm
- Joined May 2009 | Status: Trader | 2,088 Posts
LUCKY golden trades, LUCKY gold investor trading style
free MT4 coding on expert advisors 75 replies
expert advisors 5 replies
Post your top 10 expert advisors 0 replies
Expert advisors written in MQL4 + ECN broker. How? 3 replies
Expert Advisors for Meta 4 6 replies
DislikedHere are the EAs for USDJPY on M5: {image} I saw there are many downloads for the first EAs that I uploaded. That is awesome. Feedback would be appreciated! But again, the EAs should be tested on the same data. If you can not, just drop me yours, and I will create the EAs for you. Cheers!!! {file}Ignored
DislikedHello everyone! plz help me fix thiscode Check can't get openprice order1 and Order 2 can't open.if (condition) { dobuy(Symbol(),Lots,SL,TP,0,""); \\buy 1 order checks=OrderOpenPrice(); if ( Ask<= check-200) { double Sl_buy2 = check-SL2; double Tp_buy2 = check+TP2; if ( Ask<= check-200) { dobuy(Symbol(),Lot2,Sl_buy2,Tp_buy2,0,""); \\order buy2 after 200point } } }
Ignored
Disliked{quote} You have to select the order first with OrderSelect() before OrderOpenPrice() will work. https://docs.mql4.com/trading/orderopenprice In addition you have to normalize your pip/point amounts. Suppose check=1.1200, if you subtract 200 from that you have -198.88. So just (200*_Point).Ignored
Disliked{quote} is this true? if (condition) double checkb=OrderOpenPrice(); int ticket = OrderSend(Symbol(),OP_BUY,Lots,Ask,3,0,0,"",0,0,clrNONE); if (ticket>0) { if (OrderSelect(ticket,SELECT_BY_TICKET,MODE_TRADES)) { double slbuy2 = checkb-SL2*pip; double tpbuy2 = checkb+TP2*pip; if (Ask<= checkb-200*pip) { dobuy(Symbol(),Lot2,slbuy2,tpbuy2,0,""); } } }Ignored
if(condition){
int ticket=OrderSend(Symbol,OP_BUY,Lots,Ask,3,0,0,NULL,0);
if(ticket>0)if(OrderSelect(ticket,SELECT_BY_TICKET)){
double checkb=OrderOpenPrice();
double slbuy2=checkb-SL2*pip,tpbuy2=checkb+TP2*pip;
if(Ask<=checkb-200*pip)dobuy(Symbol(),Lot2,slbuys,tpbuy2,0,NULL,0);}} Disliked[quote = andonfree; 12305231] {quote} Я вижу данные, но за какой период времени вы хотели бы торговать советниками? [/ quote] andonfree ... I want to on the M15 period trading...Ignored
DislikedHello traders, I have decided to open a new topic here because I am very enthusiastic about a new method I am using. I am a trader, not a developer, not a seller, all I know is trading and with this method I succeed to create Expert Advisors for different assets. Now, I want to make sure that it works for all broker(it works for 4 that I have tested so far). Send me your Data feed, and I will send you 10 EAs to test. I will give 100 EAs, and then I will stop, because I will know the answer. What I will do is to attach a script to export Historical...Ignored
Disliked[quote = andonfree; 12305231] {quote} Я вижу данные, но за какой период времени вы хотели бы торговать советниками? [/ quote] andonfree ... I want to on the M15 period trading...Ignored
Disliked{quote} Thank yo so much for your kindness. I just wonder if you could create AUDUSD EA 1H please.Ignored
DislikedThe data for DAX was really small as well...it was hard to generate EAs even on the smaller time frames. Here are 3 EAs for M1 chart. The backtest looks good! {image} {file}Ignored