MQL4 and MetaTrader 4 - page 1063

[Deleted]
I'm writing an intermediate fractal indicator . Essentially I take a base fractal array of highs and find an intermediate high that has both a lower fractal high on either side. Nothing fancy, just testing mql. On top of the fractal code, I'm running the following logic: ExtUpFractalsBuffer has all
[Deleted]
Too overcome a tendancy of too high or too low of a price entry, I have been trying to install a Stochastics and RSI Overbought and Oversold OpenOrder Delay. In other words, not a set number of bars or time after the Original entry signal.ONLY Stochastics and RSI for final OPEN_BUY or OPEN_SELL....
Is there a 64 Bit MetaTrader 4 ?
Hi guys I thought it would be quite simple to achieve this but, it does not seem to be working for me. I am trying to create my own log file so for example I want to write the current bid for every tick to a txt file. The output i require is : [Date] 12:24:53 The current bid is 1.33981 [Date] 12:24...
I think I may have discovered a bug with regards to tester. I don't know if it exist in later Builds. It is showing results from other combination test and not the one calculated by shown inputs. One of Mismatch Examples: The combination C1 and C2 both with value 1 would not pass the init or start...
Question about OBJ_TRIANGLE can this type of object be moved around and positioned on the chart using 3 coordinates with ObjectSet(obj_name,OBJPROP_XDISTANCE,x_coor); ObjectSet(obj_name, OBJPROP_XDISTANCE,x_coor); .. to achieve a positioning relative to left+top corner of sequrity window as with...
[Deleted]
Hello community! I've been studying this stuff for a few months now, needless to say I'm pretty green at mql4. I really need some help getting this code based on Rob Booker's 5/13/62 strategy to compile. My business partner and I charted this a few weeks ago and determined that entering trades...
[Deleted]
for example #include <WinUser32.mqh>//head...int ret=MessageBox("Object","Question", MB_YESNO|MB_ICONQUESTION); What I would add to this line Thank you in advance
New article Time Series Forecasting Using Exponential Smoothing (continued) is published at mql5.com: This article seeks to upgrade the indicator created earlier on and briefly deals with a method for estimating forecast confidence intervals using bootstrapping and quantiles. As a result, we will...
Is there a way to extract the total pip sum of a pair from history? Greeting, Thought I would be able to come up with this code myself, but I am not a programmer and I am way over my head. I need allot of help. Objective: Within the same trading hour if the total amount of pips on closed trade...
Hi all, I'm totally new to MQL4 and have no coding experience at all. Could somebody please advise me how I can modify a simple script like int start() { //---- ObjectsDeleteAll(); //---- return(0); } so that it will delete all objects from all charts, not only from the one it is attached...
[Deleted]
GENERAL DESCRIPTION: In my EA I have an array called 'TickData' which saves incoming Bid price changes and Time with each incoming tick (skipping changes in Ask prices only). I made a search function for this array, which receives a 'timestamp' value as input, and finds the first index inside the...
[Deleted]
To get MT to post arrows for past indication of some event I would do something like this... for (i=0; i<WindowBarsPerChart() ;i++)      {                       // 2 down bars below 0               if (( ExtBuffer0[i] < 0               && ExtBuffer3[i]-ExtBuffer4[i]<ExtBuffer3[i+1]-ExtBuffer4[i+1]...
Hello forum, Is there any tool available out there to monitor order execution, both in terms of 1) COMPUTING performance (split seconds of processing ticks by the EA, sending orders, related ping/connection speed metrics etc. 2) EXECUTION by broker/dealer (slippage, attempts,, errors, so on.) Some...
Hi all, Currently this code changes TP for all open orders (buy and sell) individually to 10 pips. Appreciated if someone can modify it,,, to include all pending orders too ... (buy limit, buy stop, sell limit, sell stop) Your guidance or support is appreciated. Cheers #property copyright...
[Deleted]
  EA making?  (1)
Hello! How can i read the extremeMode value in EA? Kind regards!
Hello, I would like to provide someone with an Indicator I made but make sure it does not get uploaded and get used by tons of pople. Does MQL have a serial-activation library that allows me to provide this person with an activation code and make sure only he makes use of it? If not, which is the...
Hi all, I'm quite new in coding mql4 and it goes quite well. I've build this ea (see attached file). But something will not work and that is that I want the orders work together. Example: When 1 buy order is opened that the second one opens x pips away from order 1 and order 3 after x pips from...
  To follow up  (504   1 2 3 4 5 ... 50 51)
I had a CodeBase entry on zigzags and horizontal channels on different indices. Recently one person wanted a Zigzag on a cross of two MAs, which he said publicly on the forum. It is not a difficult thing to do - just tweak the ready-made one and it is done. The foxy thing is that he corrected ZigZag
Hello, I just start learn to write ea, can somebody give your samples, how to code this Enter Short: Bar # 1 must be up bar, bar #0 price lower than bar #1 low price then enter short Thanks if Bar #1 = Up Bars (Close-Open) Bar#0 ask price < Bar #1 low price - 3pip OrderSend (Sell)
Greetings, Definition: chart height - the value that changes when you hold the Left_Mouse_Mutton while pulling upwards or downwards on the right edge of the chart window. I am searching for a way to write a script that will set the height of my chart. From looking at the available functions, it...
I know one broker whose MT4 platform will automatically update the take profit for working orders for the same currency pair. Is there a platform setting for this or is it a customization for that broker? What is the MT4 setting variable, the value for the setting to enable this? Or if this a...
[Deleted]
  Help with EA  (2)
Hello! I am writing an expert adviser and i have a problem. I am new in MQL. void Check(double& test,double& test2, bool& UP, bool& DOWN){ if( getvalue() > test ) { CloseAll(); OrderSend(Symbol(),OP_BUY,0.01,Ask,3,Bid-15*Point,Bid+6*Point); UP = true; DOWN = false; }...
[Deleted]
Hi everybody, I'm puzzled. I think my EA's are not being called at every tick, so I wrote a test program: int init()  {   Print("Ask is "+Ask);   return;  }//+------------------------------------------------------------------+int start()  {   Print("Ask is "+Ask);   return;  } The init() Print()...
Hello Who can help me? I`m new in writing codes for EA`s. I wrote my own EA, which open by crossing over MA. But after closing it's open again but that I don`t like. I want that he opens only one, means after closing he has to sleep until I open manuelly. Thank you.
Now i am trading with FXx Open, ecn account, but i don't understand something. Commission. I am trading 0.1 lots. There isn't much information about commission on the FX Open mainpage, so i want to get it clear here. How is commission calculated, and does it also has to do with how long the trade...
[Deleted]
Hi all, i am trying to code this part on "at the start of say, m5 candle, check the trend". how do I code it? I tried to test code -- at the start of every 5 min candle, enter a buy trade. CurrentTimeM5 = iTime(NULL, PERIOD_M5,1); CurrentTimeM1 = iTime (NULL, PERIOD_M1, 1); if( CurrentTimeM5 ==...
[Deleted]
I have a 2 dimensional array: TickData[][4]; With each new change in Bid price (skipping ticks with only Ask price changes) the array's size is incremented by 1 using the 'ArrayResize' function, and it's dimensions are populated with the following data:       TickData[arIndex][0] =...
  getsymbol()  (6)
Is there a way in MT4 maybe someone has written such a tool to obtain all available symbols offered by the broker independent of what chart it's loaded on, and then store them somewhere such as in a series of global vars or an array? For example one broker we are working with uses 2 EUR/USD symbols
Hi, I want to place a pending order that will expire within 5 minutes (from the placement of the stop order). Ticket=OrderSend(Symbol(),OP_BUYSTOP,Lot,StopPrice,Slippage,0,0,"OrderSend function",0001,here I must put the expiration,Blue); // Order send I'm having difficulties with how to fill the...