- #1,123
- Oct 2, 2012 1:14pm Oct 2, 2012 1:14pm
- Joined Jun 2009 | Status: A slave to the tape | 4,390 Posts
I will code your pivot EAs for no charge 28 replies
I will code your scalping EAs for no charge 163 replies
Oanda MT4 - Indicators and EAs not showing 2 replies
EAs and indicators relating to moutaki... 22 replies
InterbankFX has loaded its MT4 platform with custom EAs, indicators and scripts 1 reply
Dislikedpankajaatas,
You have posted the compiled file so no one can view or edit the code for you.
Im no coder just letting you know to repost the mq4 uncompiled if you want to find the help.
Regards
ConsoleIgnored
DislikedHey Guys,
i want to learn and improve my MQL4 skills. I think the best way to do this is to practice. Unfortunately sometimes I don`t have any nice idea which i can implement in a Expert Advisor / Indicator. So if any of you is interested, please post in this forum your ideas and i will try to implement it into mql4.
AndiIgnored
DislikedDear friends,
i found mt4 trade copier so i run EA in 1 broker n copy trade to my 2nd broker A/C.
its working good but i have some issue with trade modify.
it copy all trade perfectly but after putting trade if EA modify TP in 1 broker then copier EA is not modify TP in 2nd broker.
this is the only problem is.
so pls if u can help me in..pls and i have mq4 file also so pls help..Ignored
DislikedHi,
Could anyone help me code the below to MT4? The main idea is to use it to check the historical data with various parameters.
In short I would like to open a trade (with SL and TP), if the price moves in our favor move SL to break even. If the trade closes with SL open countertrade (BUY/SELL) if it ends on TP open the same trade type.
maybe this pseudo-code below will help
======
size = x //trade size in lot
SL = y //Stop Loss in pips
TP = z...Ignored
DislikedI want to open position at default time 10:50:00. But order is not triggered. If i omit Seconds() == 0, it will trigger the buy but it open many positions.Ignored
ticket=OrderSend(Symbol(),OP_BUY,1,Ask,3,Ask-25*Point,Ask+25*Point,"ENTRY",13555,0,Red);
if(ticket>=0) placed=true;
else Print("OrderSend failed with error #",GetLastError());
DislikedWould you please to help me making an indicator that :" showing a weekly opening line and 'X' pips lines above and below it"Ignored
DislikedUse http://docs.mql4.com/series/iOpen with PERIOD_W1 (Shift 0 for current week) to get the open price.
Example for HLINE Object (you need 3 of them):
ObjectCreate("Weekly Open", OBJ_HLINE, 0, 0, PriceLevel);
ObjectSet("Weekly Open", OBJPROP_STYLE, LineStyle);
ObjectSet("Weekly Open", OBJPROP_COLOR, LineColor);
-> LineStyle: http://docs.mql4.com/constants/drawstyles (0=Solid,1=Dash,2=Dot,3=DashDot,4=DashDotDot)
-> LineColor: http://docs.mql4.com/constants/colorsIgnored