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
The list of objects now has a List All button. Do I understand correctly that the objects created by the Expert Advisor and the user are now separated? That is, if the button is not pressed, the list displays only those objects created by the user.
I have another question about stack overflow. Sometimes the Expert Advisor fails to load. Or rather, it is loaded and unloaded at once with this message. The reason is unclear, since it may or may not happen. Who knows what the reason may be?
If, say, the txt file of quotes created by the Expert Advisor (the script) weighs 100 kb, then if you copy and paste records from that file into a new txt file, it will weigh half as much, i.e. 50 kb, and Matlab will read it. So there must be some correlation between the file not being read by Matlab and weighing twice as much. I'd really appreciate the advice!
The problem is probably that the data is saved in UNICODE format. To save the data in ANSI format, add the FILE_ANSI flag to FileOpen, i.e. FileOpen(filename, ...) -> FileOpen(filename, ... | FILE_ANSI )
Can you give me a hint?
1. Situation: two processes periodically access a function which operates on the same memory space. Question: how can I prevent the function from being executed in different processes at the same time? GlobalVariableSetOnCondition() function doesn't count.
2. are the Expert Advisors in fives executed in parallel? In fours? (the answer to this question does not affect the relevance of the first one)
Can you give me a hint?
1. Situation: two processes periodically access a function which operates on the same memory space. Question: how can I prevent the function from being executed in different processes at the same time? GlobalVariableSetOnCondition() function doesn't count.
use e.g. semaphores
2. are the Expert Advisors in fives executed in parallel? In fours? (the answer to this question does not affect the relevance of the first one)
The problem is probably that the data is saved in UNICODE format. To save data in ANSI format, add FILE_ANSI flag to FileOpen mode, i.e. FileOpen(filename, ...) -> FileOpen(filename, ... | FILE_ANSI )
Comrades, I faced a problem: in the terminal long takes 8 bytes, in Visual C++ long takes 4 bytes. How can it be? No standards?
Use __int64 type in C++