MQL4 and MetaTrader 4 - page 494

//+------------------------------------------------------------------+ //|                                     SwingMan HiLo Activator2.mq4 | //|                                                         SwingMan | //|                                               soc607@t-online.de |...
This little script: void OnStart()  {//---   int waitMinutes = 60,       waitSec     = waitMinutes*60,       waitMSec    = waitSec*1000;   while ( Minute() < 48 ) { Sleep(30000);    Comment("Starting Eieruhr.. ",TimeToString(TimeCurrent(),TIME_SECONDS),"  m: ",(string)Minute()," => "...
Does anyone know how mt4 calculates CHART_PRICE_MAX and CHART_PRICE_MIN ?
Hello friends, I want to create a login form in an EA, what is the right form to do that? Thanks for your help
Hi friends, I am doing an EA for my personal use and I don't know why when I put an order instantly this order is quit.... I am using a demo account. Code: //+------------------------------------------------------------------+ //| Script program start function                                    |...
Hello I try to have many ordersend at same time with same price but when use for or while loops it's not work properly ! and without loop when i use ordersend function on ontick set order with every thick with different price like photo How can i do it ? And other problem How can i break EA after...
Hello guys, I made a square with a white background with the following code // functionint CreateBackground (string backName, string text, int Bfontsize, int LabelCorner, int xB, int yB){           if(ObjectFind(backName) == -1){         ObjectCreate(backName, OBJ_LABEL, 0, 0, 0, 0,...
  All USD pairs  (35   1 2 3 4)
Display major currencies average movement in one chart. Excellent to plot with dollar index and compare correlations and/or strenght. Russian language but options are very simple. However, a traslation would be great. The picture do not show the name of each currency but there are in the chart
Hi, Please help to solve problem while "webrequest=200 Too many requests" This function is too complicated for me. I only can code bots. I can't figure out what's wrong. It was working for years before. Not anymore : ( string GrabWeb(){   string cookie=NULL,headers;   char post[],result[];   int...
Or is it just Wine? Seems to me the time in the Experts Tab is ahead by about 60 seconds compared to the Account History. This makes fixing EA errors harder than it should be.. Any fixes for this? So far just ignoring the time warp .
   string FileName = "c://report.txt";   int handle = FileOpen(FileName, FILE_TXT|FILE_READ);   if(handle!=INVALID_HANDLE){      string MyString = FileReadString(handle);      FileClose(handle);   } Can anyone spot why this code does not work, I get an invalid handle, the file does exist. Steve
Hey Guys, I wrote this Indicator showing Support and Resistance Lines in the 15min which works perfectly fine. I also want to see these lines in the 5min TF. But when I switch to the M5 TF other lines appear which are not supposed to be there.. Can someone help me out, please? extern int
Hi, I have a couple issues/questions with my indicator, also feel free to add any tips. I'm not a programmer by profession and new to mql4. - the main issue is that none of these are showing at all, I put these in the function OnCalculate as they have to move dynamically:     ObjectCreate("top 0.7...
Hi friends, Is there any way you could suggest to get the datetime of the upcoming candle that are going to be formed later? for example on the daily timeframe (D1) I want to find the datetime of the candle that is going to be formed 20 candles since now - 20 working days later -  Is there any...
  File path  (1)
Hi,  Easy one for you guys I am sure, can you give the file path to write a txt file, I have tried loads and I'm just not getting it :-( Steve
I would like to use Mt4 910 version. However, when I open the MT4, it cannot connect to the server and said my MT4 is "old version". How can I fix this problem?
Overnight, Microsoft updated my Windows 10 to "June 13, 2017—KB4022725 (OS Build 15063.413 and 15063.414)". This morning, my stored Accounts information has disappeared from my mt4 client terminals. I work with 3 mt4 instances, over a dozen accounts, live and demo, and several brokers. Usually I...
Hi friends I gathered the following EA from other codes. But he is not trading. What could be the reason. Can you help me. Thank you extern int stoploss     = 150;extern int takeprofit   = 500;extern int slippage     = 10;extern int Magic = 4166;extern double Lot = 0.01;void OnTick(){   for (int...
It is pretty easy to get the current spread on a pair, and it looks something like this in my code. string infotext2222  = " Current Spread: "+DoubleToStr((Ask - Bid)/pips,1); However, I also want to display the spread that I "paid" or that existed on my last trade. So say I took a trade at 11:00...
Hey guys, I coded an indicator that creates Support/Resistance lines. Now I've tried to create an EA which opens orders directly when market price touches a Support/Resistance lines. For some reason the orders are not being placed directly at the lines. Can somebody help me, please? Here's my code...
Hello, I want to memorize in a variable the current time (when a condition happened) plus 5 Periods ( I'm testing EA in H1 timeframe). This is the code: if (RangecCandelaMax == High[1] - Low[1])  {                         if ( Close[1] < iBands(NULL,0,50,2,0,PRICE_CLOSE,MODE_LOWER,1)){...
Hi All, I know, I know!! it's probably the most asked question but I am unable to figure it so please take a look at this and tell me what I am doing wrong as it's not working in backtesting Broker = intertrader          minstoplevel=MarketInfo(Symbol(),MODE_STOPLEVEL);               if(OrderMe ==...
Is it possible to limit ram usage by Mt4 instance? How can an user do it?
Hello everyone, I'm thinking and tested for hours but i can't figure out this error I have this scrips: if (Solenh[i]==1 && OrderSelect(IDB_Tien[a[i]][0],SELECT_BY_TICKET)==true) // Right                {                                     datetime Tgiandong=OrderCloseTime();                    if...
Hi I am trying to add two buffers in this ADR indicator i found online, so that i xan use the buffers in an expert advisor. I want the ADR High's price and ADR Low's price to appear as buffer 1 and buffer 2 in the data window on the Mt4 platform, as show in the picture attached. Can someone please...
I was trying to build an EA by using Envelop indicator and EMA indicator. But when I run the code it some orders were placed with wrong conditions. My Strategy is shown in the figure. I assumed Period 1 of EMA is equal to line chart. SELL ORDER - When downward  line chart cross with lower envelop...
  OnTick() time  (4)
Hi all, I am trying to back test my EA but when I try to get the time of the tick it keeps returning the actual current time void OnTick()  {//---      WriteLog(IntegerToString(TimeHour(iTime(NULL,PERIOD_M5,0)))+" "+IntegerToString(TimeMinute(Time[0]))); I have tried but Time[] and iTime[] Any help...
Hi users, how do I allow all outgoing and incoming connections on my MT4 terminal on linux? I have the following issue 1) Push alerts will not send from linux server thanks
Hi I (Win7, 64, mt4, b1090) have an indicator CaVol with about 10 Parameter of which only the first two matters (the rest is for the presentation). This indicator has 34 puffer. Now I wrote a second indicator CallingCaVol() that calls the first one - but only with the first two parameters - assuming
Hello everyone, I'm just learning how to code a EA, I'm very happy if someone explain this error for me This is my mini func int Lenhmua(int Loailenh,short x, short y)     {          if (Loailenh==OP_BUY || Loailenh==OP_BUYLIMIT )     {          if...