Any rookie question, so as not to clutter up the forum. Professionals, don't pass by. Nowhere without you - 6. - page 166

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
Is it possible to determine the triggering time of a pending order without crossing the order price?
Dear forum members, I cannot figure out the Ishimoku indicator. I made a small Expert Advisor based on it but it only opens buy position, but does not open sell position. I think this is most probably due to the fact that the cloud is reversing, besides I have defined incorrectly the conditions for entering the trade.
The figure shows a red down arrow where a sell trade should open and a red up arrow where a buy trade should open. A buy trade was opened with a wrong entry (in theory it should not be there)
Upper bound of the cloud = MathMax(UpO, DownO);
Lower limit of the cloud = MathMin(UpO, DownO);
Does the history record the triggered order?
If there are several libraries, each library uses many of the same variables... All of these libraries need to be compiled separately, optionally. Should the same variables be added to each library as an inline (header file) ?
I want to make libraries exactly separate, my head is cracking. Not everything works out the way it should...
Each library must have its own header file in fact? And these header files, in turn, can be placed in the Expert Advisor itself, or in a basic, main header file, which will unite all of them. Do I understand correctly?
If there are several libraries, each library uses many of the same variables... All of these libraries need to be compiled separately, optionally. Should the same variables be added to each library as an inline (header file) ?
I want to make libraries exactly separate, my head is cracking. Not everything works out the way it should...
Each library must have its own header file in fact? And these header files, in turn, can be placed in the Expert Advisor itself, or in a basic, main header file, which will unite all of them. Do I understand it correctly?
The library header file is a separate topic. This is how it should be done.
You can put the same variables in a separate file and plug it into every library that declares variables.
Victor, I already answered this same question of yours above. Don't you read the answers? :-)
Good people! There is a Breakeven function. It works fine. It closes the deal at 0. How to make a deal close not at 0, but +2 pips. I would be very grateful for the help.
The library header file is a separate topic. This is the way it should be done.
You can put the same variables in a separate file and plug it into every library that declares variables.
Victor, I already answered this same question of yours above. Don't you read the answers? :-)
Vadim, the last time I asked, I had a vague idea about it, and that's why I probably misunderstood. Now I have come across it directly and I see that I have finally figured out what it is all about.
Good people! There is a Breakeven function. It works fine. It closes the deal at 0. How to make a deal close not at 0, but +2 pips. I would be very grateful for the help.