MQL4 and MetaTrader 4 - page 676

New article MQL5 Cookbook: ОСО Orders has been published at mql5.com: Any trader's trading activity involves various mechanisms and interrelationships including relations among orders. This article suggests a solution of OCO orders processing. Standard library classes are extensively involved, as...
[Deleted]
Hi all, Trying to make some code that uses OrderSelect() to get the ticket number of the 2nd last order  that has been opened by my EA on the current pair. (EA has a magic number). Looked around but everyone is just selecting the last order. Thanks for any input. Cheers Richard
HI, I'm a newbie at MT4. I'm wondering if price alerts work (through push notifications) when my desktop MT4 station is closed?   Cheers! 
[Deleted]
i am creating an one click trading the question is .... how to get number with decimal place  ? for point, no decimal place => okay    TakeProfitPoint = (int)StringToInteger(ObjectGetString(0,"ButtonEditTpPoint",OBJPROP_TEXT));   ChartRedraw();   Print("ButtonEditTpPoint : ",...
I have 9 programs available in the Market,I have written updates for 6 of them but I keep getting responses from the testers that does not make any sense. It is like they are testing my code for MT5, not MT4. Any help or direction would be very appreciated....
hi all all my indicators on MT4 appears strange symbols instead of up arrow or down arrow......up arrow appears like $ or SS .....atc any help!
MT4 version 5.0 build 1035  I'm trying to write a function to identify a transient High or Low value in the current bar to place an order or close it using EA.  For that I would like to loop until a certain number of consective pips to be achieved on reverse direction or a maximum delta is achieved....
[Deleted]
Hi,    I've tired for a few days where I still can't solve the equation. The default setting for the 2 "Tenkan Sen" and "Kijun Sen" is set by taking the highest high+lowest low/2. I wanted to change the setting to  high+lowest low * 0.618 & high+lowest low * 0.382 . No matter how I tried, it cannot...
I have downloaded hst data for required pair and imported it via the history center. It shows up there and I can backtest with it fine using every tick mdelling (verify this with visual mode). I know this is working as my broker does not supply the data for this pair pre 2013 and tick testing on my...
  Sidus no repaint  (1)
Hi,   Does anyone have a version of Sidus Indicator with no repainting?   Thanks 
MetaTrader 4 Build 529 beta version with new MQL4 compiler has been released. This terminal is fully compatible with all previous versions of trading servers (it works in compatibility mode with them), so you can connect with it anywhere. To update, simply connect to demo.metaquotes.net:444
  Stop Loss Help  (1)
Need some help on how to code stop loss on the next order to open. Exmaple: Order 1 = Opens with StopLoss of 200 points. Order 2 = Opens next signal with StopLoss of 10 points below/above Last Open Order StopLoss  (Order 1 is still open) Order 3 = Opens next signal with StopLoss of 10 points...
[Deleted]
Hello How can I setup MT4 so One click trading is always active? Now each time, when I restart MT4, it asks me again for confirmation? (I have checked the option 'One click trading' in Options/Trade of course)
[Deleted]
Hey, I was hoping you'd be able to tell me how to keep the same color scheme, which is currently Black on White, when executing an EA. Right now the scheme looks like this: When I run any EA it switches it to this: You can notice that it also opens a new chart which is EUR/USD, H1. I'd like to keep...
[Deleted]
for (i=certainamountofticks;i>=1;i--)                             {                               Alert("Ticks to go ",i);                                                              while(RefreshRates()==false)  // To the new tick...
New article Building an Interactive Application to Display RSS Feeds in MetaTrader 5 has been published at mql5.com: In this article we look at the possibility of creating an application for the display of RSS feeds. The article will show how aspects of the Standard Library can be used to create...
[Deleted]
Where can I find Elliot Wave Indicators/oscillators to use on the MT4 platform? Please send link. 
[Deleted]
I use utraedit to checke the difference. and I think Replace Pioneer is good for large scale programe ,if you need to replace some fuction name or int name. anyone use this tools before? they made from www.mind-pioneer.com .who has better tools, pls introduce
Hi, Is there a way that I can operate an EA on a MT4 Manager account? What I need is to extract all orders for observation... Thanks, Eyal. 
New article Trader's Statistical Cookbook: Hypotheses has been published at mql5.com: This article considers hypothesis - one of the basic ideas of mathematical statistics. Various hypotheses are examined and verified through examples using methods of mathematical statistics. The actual data is...
[Deleted]
I was hoping someone would be able to explain to me why TimeCurrent() used while defining an integer returns such a crazy value: int TimeNow = TimeCurrent (); Print ( "TimeNow = " + TimeNow); An example output: TimeNow = 1423501132 This would be the time at 22:58:53.647. Interesting isn't it
[Deleted]
Hello, Does anybody know how it is possible to change the color of the optimization graph from Green to other colors? Normally its  White, Light Green to Green? I want a optimization graph with colors blue to red. How you can change the MT4? Greetings
/*    RDN compatibility by Jack Dowsun */ //+---------------------------+ //| Expert Cross Framework    | //+---------------------------+ #property copyright "Jack Dowson" #property link      "http:0123456789.com" // User Input extern double Lots = 0.1; extern int    Interval=1; extern int...
Hello,  I see some samples about multi colored bars indicator(heiken ashi etc.), but i want to do same thing with 3 colors. For example blue bars for up trend, red bars for down trend and gray bars for neutral trend. I tried do this but some reason MT4 not painting third color to the chart. How can...
Hi, Is there a plan to add timeframes like (H2,H3,H6,H8...) on MT4  , instead of using offline charts as workaround solution?  Br Elie 
[Deleted]
Hello there, We are looking for someone who is able to program an EA based on MT4 that takes its entries based on 2 indicators and the signals generated to be used for trading binary options. Signals needs to be delivered to an external service via HTTP POST/GET. Detailed project info will be
Hello, all: Remenber that I created a trendline display different color under different trendcondition, as below:    And that trendline is plot using DRAW_LINE setting, means that every indexbuffer value will be plotted. but what I want to improve is that, the trendline will not have a value in...
no deposite bonus
Hello, I would like to know two things, i) is there a way that one can avoid signals being copied from an expert advisor? I want to avoid trades being copied from my expert advisor ii) Is there a way of finding out if there is more than one expert advisor connected to an account? Thank you
Can someone help me to correct this code   void closeby1(){     for (int total = OrdersTotal() - 1; total>= 0; total--)    {      OrderSelect(total, SELECT_BY_POS, MODE_TRADES);      if (OrderSymbol() == Symbol())       {           if (OrderSymbol() == Symbol() && (OrderComment() == "buy1_comment"...