MQL4 and MetaTrader 4 - page 1200

[Deleted]
hello, I am looking for a good mt 4 range bar indicator or script for free or ? one that : draws candles, not renko bricks. works well in real time can have all standard and custom indicators applied onto it can have the border and body colors modified does not crash or bog down can be modified...
I am having a hard time trying to create a custom indicator by using math functions. I am trying to create a simple indicator that charts the median (H+L/2) price for each time period and then graph the line. I can not find any examples of indicators that does this simple function or any other...
Can the MT4 Multi Terminal be used to control two or more accounts with two or more Brokers? Thanks in advance
I keep getting this error from my MT4 terminal saying I have entered an "invalid Serial". I use Oanda as my broker and the expert Im using has worked fine on other accounts. Any suggestions?
[Deleted]
Hi All, I'm trying to develop my own indicator (MyIndicator) by using the iCustom function to read three values from a third-party custom indicator. Originally I was trying to calculate a value for MyIndicator for all bars in the sample window (GBPUSD Daily ~65K bars). But each time I ran...
Hi guys. Logged in now and my account history is just missing? Has this happened to any of you and if so what is the fix. thanks,
[Deleted]
'Gday Amigos Anyone know if MT4 has a problem with Vista Ultimate 64 bit? Or anyone happy using MT4 on Vista 64 bit ? Thanks alot. M
[Deleted]
Hi, i'm looking somebody who knows how close open order on the level that was opened. If oder had been opened on price level 1.4321 than i want now close it on the same level. Anybody knows how to do it? thanks for any prompts:)
I have tried this code, but I dont know what to do to get it to work void killTrade(int pips, int ticket) { double price = NormalizeDouble(OrderOpenPrice(),Digits); bool reopen = 0; if(OrderSelect(ticket, SELECT_BY_TICKET)==true) { if(pips <= -1*getMaxLoss()) {...
I have found a custom indicator in the 'Book' section. It is listed as "roc.mq4 (Priliv)". I assume that this is available to buy but how do I contact the author? Also, once downlaoded, how do I had it to the MT4 'Custome Indicator' file? Hope this makes sense, Gordon.
this is my sample EA, how can i change it to having hedge trade? because now it can not trade in hedge position, and i have change it to AU server (not US server that prohibit hedge). can any one help me? my email is nomis3@ymail.com Thank you. Sample 001 #property copyright "nomis" #property...
[Deleted]
Hi I would appreciate it very much if somebody with programming skills could help me improve a little the attached MACD signal. The idea is that it gives me sound alerts, but I would like also to get a message window stating the currency and time frame where the cross ocured, like in second
[Deleted]
Not sure if this is the correct forum to ask this on, but if anyone has had a similar error, I would certainly appreciate some help. I have had MetaTrader4 installed on my PC for several years, haven't traded for about two years and went to open the platform up last week. After clicking the icon I...
[Deleted]
I think I'm totally stuck here. As I read from the docs, start() is called for each tick that has arrived. And then, and only then it seems I can submit my order. But what if I need to submit an order at the time the last candle finishes? Let's say it finishes at 17:59:59. The last tick before came...
[Deleted]
Busco a alguien que sepa programar experts para forex, para que me haga mi estrategia. Es muy sencilla seguro que no será mucho trabajo. A quien le interese por favor contacten conmigo a palazon_94@hotmail.es poner en el asunto "robot forex".
[Deleted]
Hi, Can someone give me the code to work out the high and low between the time period 00:00 hrs and 07:00 hrs. Many thanks, Goatee
I would like to conact a good MT4 EA programmer to develop systems. Please contact: v.estret@terra.es
Anyone have code to get the metatrader icon in the Windows status bar to flash? I think you need FlashWindowEx but there's a fair bit to it, so if someone's already done this in MQL4 it would be a great help if I could have the code! Thanks.
[Deleted]
  ERROR 4108  (5)
Hey everybody Using ea i need to delete a pending order sellstop type. i use simple technique : first ordeselect and then oderdelete, nost of the imes i recieve error 4108 invalid ticket though it the orderselcet locates the order. my question : who can explain that mishap and how can i overcome...
[Deleted]
Hi, My EA trades 10 pairs simultaneously, I have all 10 charts open and run the expert on the first chart. It checks the values of all 10 pairs during every pass through start(), but i noticed that it frequently misses entry and exit points when the price only barely touches a value (only for the...
Fellow collegues,, I am in search of a trading system which is having attractive look, best predictions, and with detail plane of action. Can any body help me by sendind an e-MAIL ON JANAKINAMDAR@GMAIL,COM.? 2 .I am also searching an indicator/ set of indicators which can predict the trand in...
Ok, so i thought that when your EA places a trade, it is shown on the chart with an opening and closing arrow as long as you specify a color on the ordersend or ordermodify commands (which I did). instead, it shows the opening arrow and two hashes for the TP and SL levels the last time they were...
[Deleted]
Hi guys. I need some help if possible. Ive only been trading for a couple of months. Ive just started using EA and ive managed to butcher the MACDSample to add a stop loss, however I would like to add a close trade after a certain number of bars (I think this is better than a time period because I...
int start() { double ABUY=0; double ASELL=0; double BBUY=0; double BSELL=0; double point = MarketInfo(Symbol(),MODE_POINT); double expiration=CurTime()+PERIOD_D1*60; int n; int total= OrdersTotal(); for( n=0; n<total; n++ ){...
Is it the amount to ticks that take place within any given bar ?
Kindly assist me with coding of a very simple EA that checks that a certain condition is met across three time frames and sends alert either as long or short. Basically if value of stochs is between 20 and 30 at 15, 30 and 60 min timeframes then send alert long,,,, and if stochs is between 70 and 80
Hello, I want to get theNumber of bars from the actual time to 6 o'clock from the actual day. I thought I can use the iBarShift-Function, but what do I have to write for the "time-Parameter"?? iBarShift(NULL,0,6) Lot's of thanks, sunshineh
double Volume[] Series array that contains tick volumes of each bar of the current chart. does this hold the data about high, low, open and close ?
[Deleted]
Anyone else faced this problem before? I already backtest off-line to lock the spread, but for some unknown reason, my visual backtest result comes off significantly different from the non-visual. I also do not use Objects for entry/exit logic. Googled about it but nothing conclusive..
[Deleted]
Hello everybody! I concern myself on Forex,MetaTrader and backtesting for a few weeks. So I have not that much experienceabout that topic. I wrote a simple EA that goes long or short when one moving averageis crossing another one including a stop loss and a trailing take profit. Theresult of it,...