MQL4 and MetaTrader 4 - page 1209

[Deleted]
Can anyone tell me how I load the FTSE 100 into my market watch window ??
Hi All, I wrote and indicator and it makes slower my EA. If i wrote my code into an DLL is it be faster? thanks
[Deleted]
Say I want to take profit on 1/2 of my position. Is the only way to do this is to have 2 separate orders opened at the same price and once the TakeProfit level reached close one of the orders and let the other one go? I would prefer to have a single open order and then be able to sell 1/2 of my Open...
hi, I have programmed an indikator with many lines. Now I am searching for a good way to mark a buy or sell signal optically. First I thought about a history diagramm in a new window, but therefore I need an additional indikator. Do you have any ideas, how I can mark this in a clear way. I it...
[Deleted]
Have one trading sys. 80%-90% success rate using manual trading . Need EA coder help to put the sys into EA Free Help. Reward is sharing of sys. Please leave email in your PM to me. Serious and genuine EA coders only Fake coders will be reported
[Deleted]
I want to buy a good book to learn how to program in MQL. The only book I have found is Expert Advisor Programming. Is this worth buying or are there any better books out there on the subject. Feedback appreciated.
here is where I have problems.I want to take a pending order and I have a hard time setting it up I have try many things but none works so far I always have error 130 even tough I have way out of the minimum range takeprofit and stoploss.I don,t know how to set this up properly maybe someone is...
hi, i've problem when i want to joint yesterday time with today datetime, do i need use this code double dDay = iCustom(NULL, PERIOD_D1,1);double D2Day = iCustom(NULL, PERIOD_D1,0); To get the time & put inside below code? thanks...   extern string periodBegin    = "23:00"; // yesterday...
[Deleted]
So i want to get indicator color on pre bar. ex: Print("T"); double v = iCustom(NULL, 0, "RSI_TCI",0,0); Print(v);
[Deleted]
  Problem with EA  (9)
I had an EA made a couple years ago, but it doesn't seem to be working anymore, I don't know if things have changed or what. It works on tester, but it won't place the trade in live mode. In Navigator, under Expert Advisors, my EA is greyed out while the MACD and moving averages are yellow and blue
[Deleted]
Hi team, I am an fx noob. Sorry if this has been discussed to death already but I have searched for hours with limited results. I am trying to evaluate if mathematical methods can realistically be used for probable consistent gain in fx speculation. I am writing a program in Excel/VBA to try to
[Deleted]
Hi All, Someone know if exist one script that it's avaible to open the orther from one master Account with MT4 and in teh same type open the orders in the others N MT4 accounts like a multiterminal platform If will be goods with the all types of orders like SELL, BUY, SELLSTOP, SELLLIMIT, BUYSTOP,...
Hello, I want to know requote new price when error 138 occured. Because some brokers provide wrong Ask/Bid price even right after RefreshRates(), and I get requote error continuously. I noticed that error messages on logs have new price. 2009.09.30 15:55:25 'account': requote 1.0803 / 1.0808 for...
[Deleted]
I would like to convert time based candle chart into the price based candle chart. I am using MT4. Please help me to do this..
[Deleted]
Hello Folks, I'm experimenting with some code and recently receive the error 128 - trade timeout. I tried to find a more helpful explanation, but couldn't get one. Can anybody please tell me and others what exactly this error code means? Thank you in advance. WorstCases
[Deleted]
  orderticket ?  (10)
hello. i need your help, is there function return ticket number of an order open in a diferent pair? it s like that if my EA is attached in "USDJPY" pair and i want get the price of "AUDUSD"pair i use the function Marketinfo . exp: OrderSend("AUDUSD",OP_SELL,Lot,MarketInfo("AUDUSD",MODE_BID),3,0,0...
[Deleted]
Hello. Can someone please telll me what wrong with this script. It's suppose to open 5 pending orders... 5 above and 5 below current price. It never does. Thank you. //+------------------------------------------------------------------+ //|...
[Deleted]
  Forex Auto pilot  (2)
Hi every one, im fairly new to the forex and just purchased some auto pilot software, Click here to view if you like....its pretty good and easy to use for beginners like my self..... but before i understand it correctly can anyone give me some good websites to visit for detailed info on trading the...
[Deleted]
Hopefully part of a company, looking for a EA code on a strat i had developed in Esignal. It is written in C++ for esignal. I can give the details for it. Looking for a editor or a company, individuals I will consider as well, this is a pay gig, not a simply project , looking for someone who is well
[Deleted]
Hi all, I need a programmer to code a simple trading system (MA crossover) Regards, Rich
Hi to everybody, I'd like my EA would open different pairs at the same time but now it opens only the first one pair not the second. Can anybody help me???? Thanks a lot in advance. My script is something like this: //---- input parameters extern string sPair1 ="EURUSD"; extern string sPair2
[Deleted]
hi all, i'm trying to learn how to code, but i faced a problem now. I tried to incorporate the EMA_Angle indicator into an EA as a filter. My code below works when I just go long if maAngle > EntryAngle_Threshold and short when maAngle < -EntryAngle_Threshold. int ema(){double maAngle;...
  Showing Pips  (2)
Hello, Using MT4 with a EA i downloaded, the results are in the Terminal in Euro's. Is it possible to show the results in pips? Kind regards Mario
Hi All. Im new here and almost everything seems confusing. I trade forex and have been looking for is a simple ea(which apparently to me is herculean) which can do some work for me and hopefully reduce my workload and stress. I hope and pray i find a good shepherd here who is able and willing to...
[Deleted]
Hi, Would anyone know how to display volume in the chart window? It is easy enough displaying it in a separate window, but I am having problems placing it in the chart window itself (at the bottom border). My code is listed below. If I use #property indicator_separate_window, it shows in a separate...
[Deleted]
Hi, I would like to run my EA at one account on different timeframes und currencies with different settings. So I gave the EA in every chart a different Magicnumber for identifying the orders. The different Magicnumbers were shown in the orderlist, but the EAs interfere each other in spite of the...
Hello, I'm looking for a way to plot dots in my ea which shows the calculated trailing stops. I would like to displays dots like a parabolic SAR indicator. As I can see, ObjectCreate() is only able to plot arrows, lines, rectangles,... but not a dot or any other alphanumeric characters. I you have...
[Deleted]
hello, is there a way to get,or programming, the internal mt4 indicators visible on the chart ? KR
Greatings MQL4 coders and a happy new year!, My current AE has a function like this: double FunctionName(double& Array1[], double& Array2[], double& Array3[]) Because of the use of that ampersand char (needed because their values are changed within this function) it seems impossible to declare...