linux80s
linux80s
Friends

Add friends via their profile or user search and you will be able to see if they are online

linux80s
Added topic Lost focus of an Edit object
I have an Edit object . After I type a value in it, I want this Edit object to be deleted (i.e. when I press the Enter or anything else or click the mouse to finish the editing, I need the Edit to be deleted). Is it possible to detect in MQL (without
linux80s
Added topic Getting only the today's orders
I need to get only today's orders (both open/closed). This function runs 5 times within every second (please don't ask why, I need it). My problem is I only can do it by examine all orders of the given account. It can be a big problem if the
linux80s
Added topic "Not enough rights" - what the heck is it?!
My EA ran without any problem all day, opened and closed the trades as it should. But, after some time it gave the "Not enough rights" error and did not open the trades. See picture of the Journal tab. What is it and why did happen
linux80s
Added topic Wrong values of TerminalInfoInteger on Linux
Hi, I tried these TerminalInfoIntegers, but without success: TERMINAL_MEMORY_PHYSICAL Physical memory in the system, Mb This gives wrong value TERMINAL_MEMORY_TOTAL Memory available to the process of the terminal , Mb This gives wrong value
linux80s
Added topic What happened to array sizing?!?
Guys, there are strange things in MT4 with array sizing that never happened before. If I use this, no problem: double array[ 655 29 ]; But if I use this, I got a compiler message (" the size of local variables is too large (more than 512kb) ") double
linux80s
Added topic Strange result, is it a bug?
Hi guys, This code: int a= 50 ; double c= 2.55 ; Comment (a*c, " / " , MathRound (a*c), " # " , MathRound ( 127.5 )); Gives this: 127,5 / 127.0 # 128.0 Why not: 127,5 / 128.0 # 128.0
linux80s
Added topic Get data from indicator separate window (universal way)
Hi, I want to get the indicator data from a separate window. I need to do it in universal way. I mean, doesn't matter if it is an RSI window or MACD or anything else. I want to collect the indicator data into an array, regardless of what indicator it
linux80s
Added topic After upgrading to 1280 build, MetaEditor stopped working (Linux)
After updating to 1280 build, my MetaEditor stopped working. I am on Linux and Wine. Before the upgrade everything was good. When I click the MetaEditor icon in the MT4 toolbar, nothing happens and I got the message in the Journal: "MetaEditor not
linux80s
Added topic MT4 terminal/MetaEditor >> Authorization failed on Linux and Mac systems (again)
Hi, This very annoying error is here again. I cannot enter to my MQL account with the MT4 terminal (and MetaEditor): authorization failed. The same problem happened already 1-2 months ago and then has been resolved by MetaQuotes. Moderator, can you
linux80s
Added topic Getting the content of an mq4 file within my mq4 program
I have a file called test.mq4. I need to get its content as a string in my other mq4 program. The test.mq4 is an UTF-16 file. If I convert it to UTF-8 (by an external text editor), I can get its content like this:    uchar filedata[];
linux80s
Added topic Regex problem in MT4
Hi, I have a text: Blue cars are everywhere. I'm using this library: https://www.mql5.com/en/code/16566 Also, here is a regex description: https://www.mql5.com/en/articles/2432 The issue: If I'm using this regex pattern : "Blue ", then I get the word
linux80s
Added topic Is it mystical?! It is!
Total confused. This doesn't work (result >> bars=0): int OnInit ()   {    string chartSymbol= _Symbol ;    int bars= Bars (chartSymbol, _Period );    Print (" Bars : ",bars);     
linux80s
Added topic Getting an indicator value
Hi, I am new to MT5 and confused. In MT4 it was easy to get an indicator value, for example: double atr= iATR ( Symbol (), PERIOD_CURRENT , 10 ,0); The documentation is kinda difficult for me. How can I get the "atr" value in MT5? How does the above
linux80s
Added topic Indicator values only for the last X bars
Hi there! Can someone show me how should I modify the original MACD code if I only want the values for the last 100 bars? I mean, I don't want the indicator to calculate for all candles, only for the last 100 (99-0 index). Please provide me the
linux80s
Registered at MQL5.community