
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
Frequently used and useful functions:
Session limit price check:
Frequently used and useful functions:
Redesigned GetPositionPrice() function:
A small edit to the function (for versatility)
instead of:
make it like this:
Forum on trading, automated trading systems and testing trading strategies
When is the new version of MT5 and where to find out what is expected in it
comp, 2016.03.21 08:52
If, for example, I do it myself: open a real account and put investment access to it on the forums so that everyone can see the real feed of FORTS in real time and have access to normal testing, could there be a problem? Or is it clear?"Recommendation:
When designing EAs for FORTS, I do not recommend using the Tick event, but rather
It's better to usethe BookEvent event".
It's not explained why it's better, maybe in some cases it's better, in other cases it's better onTick. Could you be more specific?
"Recommendation:
When designing EAs for FORTS, I do not recommend using the Tick event, but rather
It's better to usethe BookEvent event".
It's not explained why it's better, maybe in some cases it's better, in other cases it's better onTick. Could you be more specific.
The author is in the ban and you won't hear an answer here for some time.
Here's what I think about it:
The Tick event only occurs when Bid, Ask, Last are changed. Also Tick event is cumulative (as developers said), for several price changes can come one Tick.
The BookEvent event arrives at any change of orders in the betting market and at executing trades. The BookEvent event comes much more frequently.
It's better to use OnTick() if you don't need to analyse the liquidity in the market.
On highly liquid symbols the BookEvent event comes very often and if there are heavy calculations or several heavy indicators in the handler, it will work as a loop.
If your Expert Advisor has other event handlers, like OnTimer, you can miss these events.I don't know about eventsOnTradeTransaction andOnTrade, perhaps, they can be skipped.
Here is some information for you:
The length of the transaction queue is 1024 items. If OnTradeTransaction() takes too long to process another transaction, the old transactions in the queue may be superseded by newer ones.
The author is in a ban and you won't hear back from him here for a while.
It's been a long time since Michael was released from the bathhouse... Here, he's changed his avatar.