[ARCHIVE]Any rookie question, so as not to clutter up the forum. Professionals, don't pass it by. Can't go anywhere without you - 5. - page 265
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
Guys, I don't know Kim, maybe someone knowledgeable could answer in this thread.
I'd really appreciate it!
Question for Professionals: we need to pull data on the last closed
order, keep count of order numbers is not possible because
If you want to get the data on the last closed order you have to keep count of all the order numbers, it is impossible because several EAs work and everyone puts and closes
Every EA has its own wizard.
The question is about the data from the last closed order in the terminal?
WHO KNOWS THE ANSWER PLEASE!!!
Question for Professionals: We need to pull data from the last closed
order, to keep count of order numbers is not possible because
I have a few EAs working and all of them put and close
Every EA has its own wizard.
The question is about data from the last closed order in the terminal?
I'm not a scientist, but if you're looking for the last order, find it by time...
EXACTLY HOW?
This function returns the type of the last closed position or -1
This function returns the closing price of the last closed position
This function returns the closing price of the last closed position
how do i make an EA work not only on demo?
How do I make an EA work not only on the demo?
It is not the source code! It should be mq4, not eh4!
The one you have posted here is NOTHING.
The same intruder in another thread:
tpyokfcx.ex4(30.27 KB)
I decided to check out the librariesTarasBy wrote. I started with this onehttps://www.mql5.com/ru/code/10659
There are some questions. I'll be consistent. For example:
We can see in the function parameter itself:
fi_Ticket = 0
Usually such functions are called already after order selection, which means they will have a ticket. Why should we assign a default value of zero then?
The next step is even more interesting:
The variable fs_Symbol is immediately compared to bs_Symbol.
Thebs_Symbol above was not initialized, where thefGet_MarketInfo()function itself is called. And what is this bs_Symbol for anyway ?
also in the condition:
condition, iffi_Ticket < 0, then next...
and this already contradicts the condition. At the beginning of the code the conditionfi_Ticket < 0 must hold, and then inside this condition the ticket > 0. Where is the logic?