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
Ok. I think and I am sure that the question on acceleration of backtesting and optimization will be a hot topic in coming years. Really profitable algos are very computing-power-hungry.
For example the famous and very profitable RenTec hedge-fund has the best in financial industry computer center, better than in best of banks.
Users of MQL4-5 are a kind of lucky in this aspect: MT4 is offering very friendly and transparent support for CUDA-DLL acceleration.
And MQL5 on MT5 is offering high-speed MQL5 compiler, ready-to-go cloud computing and ready-to-go OpenCL support, or again CUDA-DLL support.
And i think it is utterly useless, and the only thing that is reliable, are real tests on live markets.
Yes you mention hedge-fund and i totally agree on that one, but you would have to agree with me, that hedges can not be tested on mt4 or mt5,
This is one of the main reasons i find it to be useless.
And i think it is utterly useless, and the only thing that is reliable, are real tests on live markets.
Yes you mention hedge-fund and i totally agree on that one, but you would have to agree with me, that hedges can not be tested on mt4 or mt5,
This is one of the main reasons i find it to be useless.
I think this statement is not 100% correct.
1). Nobody in the financial industry will run into position without extensive back tests.
-------------------------------------------------------------------------------------------------------
A Day in the Life of a Quantitative Developer
https://www.mql5.com/en/blogs/post/287
"5:00 PM Management Meeting - Management, quant development and quant trading all get together for a weekly meeting. We have a "traffic light" system for issue reporting (red, yellow and green for issue severity). This helps us identify longer-term issues that can be corrected.
The first half of the meeting is given over to discussing recent performance of the funds and whether it is in line with prior backtests. The funds are performing well this week and are in-line with expectations."
-------------------------------------------------------------------------------------------------------
2). In general terms in the investment world the hedge is "an investment position intended to offset potential losses/gains that may be incurred by a companion investment".
As to trading I prefer to call it pairs trading.
As I know MT5 is pretty compatible with pairs trading. It has a really multicurrency tester.
I think you mean new direct position management and accounting in MT5, compatible with modern accounting. It reduces the possibilities of tricking your broker, but there is no limitation to arbitrage two, three, four brokers by external software bridge.
There is no ideal trading terminal. Big banks hire teams of developers to write their own systems from scratch, having in hands only outdated FIX protocol, spending millions on their systems in addition to trading terminals. No terminal, especially costing $000.00, can substitute those big bank systems, running backtesting all night (called "cron jobs", read blog above).
But MT4 is one of the best as for backtesting with almost FREE quotes archive. As I know MT5 is good in multicurrency (pairs, portfolio) testing.
I think this statement is not 100% correct.
1). Nobody in the financial industry will run into position without extensive back tests.
I do so all the time and i know i am far from the only one.
We do run tests, but not with MT4/5 Back tester because we realize it is like comparing day and night.
Sergiy Podolyak:
2). In general terms in the investment world the hedge is "an investment position intended to offset potential losses/gains that may be incurred by a companion investment".
As to trading I prefer to call it pairs trading.
As I know MT5 is pretty compatible with pairs trading. It has a really multicurrency tester.
It's not it does not handle multi currency at the same time.
This is in fact the biggest disadvantage.
I do so all the time and i know i am far from the only one.
We do run tests, but not with MT4/5 Back tester because we realize it is like comparing day and night.
It's not it does not handle multi currency at the same time.
This is in fact the biggest disadvantage.
I think You have been misled by somebody. The reality is much better:
https://www.mql5.com/en/articles/648
https://www.mql5.com/en/articles/392
https://www.mql5.com/en/articles/mt5/strategy_tester
https://www.mql5.com/en/articles/770
https://www.mql5.com/en/articles/234
Actually, the reality is worse.
i am not mis-informed, you are simply under-informed.
Marco vd Heijden:
It's not it does not handle multi currency at the same time.
it still stands.
Actually, the reality is worse.
i am not mis-informed, you are simply under-informed.
it still stands.
at the same time ?
so i can run a backtest on two currency pairs buying and selling in one ea at the same time ?
at the same time ?
so i can run a backtest on two currency pairs buying and selling in one ea at the same time ?
CUDA 7.5 (7.5.18):
driver 352.86
CUDA 7.0 (7.0.28):
driver 347.62
driver 350.12 recommended
CUDA 6.5 (6.5.14):
driver 340.21
driver 341.44 recommended
driver 344.11 recommended
CUDA 6.0 (6.0.14):
driver 331.17
driver 331.62 recommended
driver 332.88 recommended (developer's version)
CUDA 5.5 (5.5.20):
driver 319.37
driver 320.57 recommended (developer's version)
CUDA 5.0 (5.0.35):
driver 304.54
driver 306.94 recommended
CUDA 4.2:
driver 295.31
CUDA 4.0:
driver 270.81
CUDA 3.1:
driver 256.x
CUDA 3.0:
driver 195.x
CUDA 2.3:
driver 190.x
Not exactly, not 100% this way.
You don't need any custom DLL in MT5 in order to utilize OpenCL technology. MT5 makes it for You inside MT5. But what you have to do - in order to speedup backtesting - is to RE-WRITE the CORE of your algorithm, (convert it from MQL5 to OpenCL, this sub-program in OpenCL and CUDA world is called "kernel") and present it to MT5 by special MT5-API-OpenCL functions.
MT5 launches it for you, by direct communication with OpenCL driver.
Without re-writing parts of your MQL5 program into OpenCL-style "kernels" MT5 will be unable to accelerate backtesting.
And now the good news:
1). new upcoming versions of x64 (not x32) MQL5 compiler seems to be much faster in calculations (discussed with Renat in russian forum).
2). You can easily use "agents" of cloud computing in order to accelerate pure MQL5 programs' backtesting.
Could you please show us a simple method that allows opencl to access particular indicator or market OHLC?
Thank you