Questions from Beginners MQL4 MT4 MetaTrader 4 - page 210
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Can you tell me how to enable Alert on the close of a candle? Ie the meaning of this: The signal crossing the MA on TF 5, for example, but it is triggered somewhere in the 2nd minute, andAlert should work at the close of the current candle....
Can't the opening of a new one be checked as the previous one closed?
Salud!
In mt5 there is an option "Trade history", when it draws levels of closed trades (by connecting with a line opening and closing... the screenshot shows what I mean). Is there a possibility to do it programmatically in mt4, something like on/off? Or does it have to be done independently and built?
On opening a new one, you can't do a check on how the previous one closed?
I don't understand! reformulate the question!
I don't understand! reformulate the question!
Greetings. Can you advise me?
I am making "arbitrage" EAs, which work on two terminals from different brokers and transmit Ask and Bid to each other. I have done so by writing the structure in binary file and reading the file by another EA.
The speed of transfer is proportional to frequency of reading/writing.
How "harmful" for the disk is such a thing, if frequency is, let's say, 10 times per second?
How can you make the data transfer not through the disk?
Andrew, reduce the number of reads and writes to the file. If the price has not changed by more than N points, don't pass anything. This way the number of records will drop significantly. And for reading, use file-flag. If this file exists, read binary and delete file-flag. If it doesn't exist, it doesn't. From 10 times per second you get 1 time per minute
Greetings. Can you advise me?
I am making "arbitrage" EAs, which work on two terminals from different brokers and transmit Ask and Bid to each other. I have done so by writing the structure in binary file and reading the file by another EA.
The speed of transfer is proportional to frequency of reading/writing.
How "harmful" for the disk is such a thing, if frequency is, let's say, 10 times per second?
How can you make the data transfer not through the disk?
Aleksei Stepanenko, Vladimir Simakov thank you.