I want have access on the one-hour bars and at the same time on the 15 minute bars in my indicator: int limit = rates_total; int count=prev_calculated;
The last years I was working with MQL4 and I dont want to change to MQL5. What are the plans of metatrader ? Will MQL4 be alive the next 10 years or must I learn MQL5
When I read the log file I could recognize that the Custom Indicator is loaded and then removed. Again he is loaded and removed. Then he is loaded. Enclosed you see a screen shot. What does that mean ?
I want the hundreds of prices of all shares copying into an Excel File. The shares in the symbol window have only short names. By moving with the mouse over a short-name I can read the right name of the company. Can I copy the complete name of
My brooker uses MetaTrader 4. Can I use the Metatrader Editor of MQL5 and programm EA's ? Should be possible, because the EA's are working on my home PC. The brooker gets only Sell, Buy and Close Information.
Some of you will create programms for other people. So it would be comfortable, if external variables could be described in an extra col, named "Definition" or something like that. See the enclosed picture. Then you know, what I mean
I would divide the the time information in the frame. On the upper line the month. On the down-line the time. That would be comfortable as you see on the enclosed picture
When placing an order in AUDNZD the difference sl - price - tp must be about 600 Points. That should be corrected. 2) In the metatrader trade window I see the price with 5 digits, sometimes with 6 digits. Enclosed the
The chart buttons in my top main menue line (Zoom in, Zoom out, Chart Shift , etc. ) are away. Now I could reach them by clicking on the "Charts" Button and then selecting the item. In former times it was more comfortable and
Sometimes the time in the Market Watch frame stands still and no action happened. Did anyone else had seen this problem ? (May be its only a problem on my computer because I am running MQL4 and MQL5 at the same time). I was looking for a button
In MQL4 it was possible to draw little markers in the chart when placed a Buy/Sell Orders. Is this feature transfered to MQL5 ? Somewhere in the class CChartObject ? I would like to have it as MqlTradeRequest .Color
I determinated my EA to open a position with volume = 1.0 Sometimes he will do that, sometimes he add a second order, so that the volume is 2.0 Did anyone had the same problem ? Maybe I have a mistake in my code, but with MQL4 I
Hallo MQL5 programmers, you introduce a Deal, a Trade, Order, Position, etc. with an Order number, an Order Magic Number, a Deal Magic Number and so on. I only need an opened Order ( waiting for confirmation by the server), confirmed Order
I get from my broker firm drawings, in which a simple Technical Indicator is used. (See the enclosed picture) Only the highest and lowest points of the bars are connected with a line. So you get a band or corridor. Did anyone know
I have opened an buy-order, confirmed by the server and running. int x = OrdersTotal(); x = 1 x = 0 x = 0 ........ OrdersTotal() returns first 1, then 0, although there is an open position.
In MQL4 I could write: MqlDateTime ttt; actualDay = ttt.day_of_week; // MQL5 returns 0 In MQL5 this functioned: MqlDateTime ttt; TimeToStruct(TimeCurrent(),ttt);
I tested the new programming construction CopyOpen("EURUSD",PERIOD_H1,0,5, XY); // 5 bars from 0 - 4 XY[0] // this is the oldest bar - the fourth bar In MQL4 the [0] was the newest. In my test
It would be nice, if the HTML Help File would mention the OrderClose statement and its expression in MQL5 with a short examble. Article "Moving from MQL4" did not mention that the OrderClose Statement is no longer possible.