MQL4 and MetaTrader 4 - page 491

  Convert Variable  (2)
string b11[20];   string SeyranGrup[20]={"aa","bb","cc","dd"};     b11[2]="Seyran"+"Grup";    Alert(b11[2]);   result is SeyranGrup. how can I do it result= bb i have 70 variables . I want to do with a for loop. But the name of the variable instead of the result. I want the content of the variable....
Hello, I have question about using Excel DDE, when I call DDE from excel the high, low values like so (see below), these high load values are they daily, minute, what time frame exactly? I cam trying to convert the same functionality in c# my high, low value do not match, and I am using the same...
Hi all, I would like to insert the zigzag lines on a ticks on chart indicator. I tried with the classic zigzag but the code only fits with the High Low prices! I'm realy lost, could you help me? Thanks in advance, Fabiano
Hi there I just found out that the saved Reports of the Strategy Tester do not contain the settings who are DropDown-Fields/Enums... Is there a way right now to get the Strategy Tester Report to include all User-Settings, inclusive those who ar enums? And if not, is there a way to ask MetaQuotes to...
Hello, for some reasons I like to work with an interface. but my mt4 don't know the word (?) Same code in the documentation (https://docs.mql4.com/basis/types/classes): //--- Basic interface for describing animalsinterface IAnimal  {//--- The methods of the interface have public access by default...
I have an EA that only works on MT4 build 910 I have installed the MT4 but it doesn't work and keep warning that it's an old version and needs to become update Is there any other option to use my EA without installing old MT4? or, how can i get it to work?
  MT4 and VPS  (4)
Hi all, I was wondering - Do i have to keep my terminal running on my cpu at all time when i copy trades from a signal provider ? //Alexandra
[Deleted]
Hello, I've been using Mt4 notification for a while now, with android phone, and it worked well so far. But recently it stop, when i try to send a test notification, i've got this message on the journal : "notifications: failed send request(notify.mql5.com:443 via proxy failed)" does someone have...
Hi all, i am learning mql4 and for this i think that i must code and understand the logic. Well, i am trying to code the searching of previous high from actual+1 bar. int start()  {   int  i;   int  counthigh;              for(i = 1000; i >=0; i--)      {             if ( iHigh(NULL,PERIOD_H4,1) >...
I have created an indicator that runs only once a day. After that, the lines can be moved at the discretion of the trader. The problem I am having is that if the computer goes to sleep, or the trading platform is closed, the indicator runs before all the data is available for analysis. Is there
  learning  (2)
how i can learn language mql4  in the best and fast way for programming an expert advisor and writing it's conditionals in easy way and like i want.please help
I placed a BUYSTOP and a SELLSTOP; but after selecting the order, OrderType() return 0 or 1 instead of 4 or 6 (no other order type  placed) result=OrderSend(symbol,OP_BUYSTOP,lot,NormalizeDouble(Ask+2*boxSize,Digits),slippage,0,0,"",MAGICMA,0,CLR_NONE);   for(int TradeNumber=(OrdersTotal()-1);...
Hi, I'm using objects to give guidance about the status of expert. I'm successfully using in visual mode for during tests and works perfectly however when I moved expert to demo account (even real) I observe that the labels are not visible on the chart. I'm not sure which release it changed since...
Hi, I've got just a simple question on how to tell when the current price is above the cloud. senkaspan A =iIchimoku(NULL,0,9,26,52,MODE_SENKOUSPANA,1); senkanspan B= =iIchimoku(NULL,0,9,26,52,MODE_SENKOUSPANB,1); Now as I understand, for current price to be above cloud, not future cloud ,close...
For some reason it keeps placing the order at the end of the SAR run right before it switches over. double UpperBand = iBands(NULL,0,20,2,0,PRICE_CLOSE,MODE_UPPER,1);   double MiddleBand =iMA(NULL,0,20,0,MODE_SMA,PRICE_CLOSE,1);   double LowerBand = iBands(NULL,0,20,2,0,PRICE_CLOSE,MODE_LOWER,1);...
[Deleted]
I want to read this file, but I cannot read it because my ea is re-compiled. I copied it, and I want to know what is the best numbers for this ea.
Hello. I try to install this round number indicator "https://www.mql5.com/en/market/product/20933" on two mt4 platform but cant install on 2nd mt4 , just repeating installation on 1st mt4. Its a free indy so i cant buy it and i cant even download it to my pc. Can someone pls help on how to get it...
I have error type 130 during OrderSend function, can you help me to fix it?  extern string ParametriCandele =   "Inserimento parametri candele di set-up";extern string CandelePrecedentiBuy =   "Inserimento numero candele precedenti Buy";extern int    candelePrecedentiBuy =    5;       // candele...
Hi , I want to know if limiting an Indicator by checking license type illegal ? because on indicators people can download it on demo accounts and see the signals and then manually trade on their real accounts. for example I want to have a fully functional demo of my indicator only on EurUsd . and...
Hello, I want to draw a triangle between 3 ZigZag points. I already have the ZigZag Points. How can I draw the triangle between them? This is what I got so far: int start()   { int n, i;     double p0, p1, p2, p3, p4, p5;      i=0;      while(n<5)      {      if(p0>0) {p5=p4; p4=p3; p3=p2; p2=p1;...
  Tester  (1)
Anyone else seen issues where the tester closes trades right after opening the trade? I look but I can't figure out why it does it but other trades go fine. I looked at journal and can't see any reason for it to close.
Hi friends, I've coded an EA that opens and deletes orders based on some situation. I'm saving the ticket number of the placed orders and by new ticks come in, I repeatedly check them for further calculations by using OrderSelect function with their ticket numbers that have been saved previously....
Hello, I notice that it's possible to export closed positions (both open and close on 1 row) to CSV or excel in MT4. However is it also possible to just export all closed orders (so 1 buy/sell order per row) to CSV or excel in MT4? Thanks in advance! Kevin
Hi All, Below is my alert condition in the code. Now I want to restrict the alert only to a particular list of symbols. For Eg. if (_symbol={EURUSD, USDCAD, GBPUSD, GBP,JPY, NZDUSD, NZDJPY}) then it should trigger the below code. If the symbol is not in the list then it should not trigger the alert....
HI, I needed help of a programmer, who can create Bill William's Divergent bar alert indicator. The idea is very simple, 1. Bullish Divergent bar: Conditions to be satisfied: a. Awesome oscillator spikes color Red (above/below zero is immaterial) b. Bar makes a lower low than previous...
How to do this without going one by one? Is there a way to compare for example x to every value of array[] , when array has 100 elements? or do we have to go one by one? ArrayCompare() just compares a single element to a single element in the second array to be compared. I thought WHOLE_ARRAY was...
i have a source code which is currency correlate indicator but this is not my source code. i want to add currency symbol onto Draw_Line like following picture.    int i;   string name;   for ( i = 0; i < CURRENCYCOUNT; i++ )   {      SetIndexStyle( i, DRAW_LINE, STYLE_SOLID, 2, currencyColors[i]...
Hello, I'm struggling with MQ4L's arrays trying to achieve what I'd call a pretty simple operation in other languages. Any advice on this greatly appreciated! I've got a dynamic array that will be altered in the onCalculate() function of my indicator. Everytime price reaches a value that is...
I have read much documentation but I'm still confused about the MagicNumber.. Please help. Is the MagicNumber stored exclusively by the EA that is performing trades on new orders and also is it stored by the server or just the EA? In kind regards, Neal
Hello, is there any way how I can pause all my pending orders (manually) before some news? I don't want always to delete pending orders before some news and then set new ones... thanks