Forum on trading, automated trading systems and testing trading strategies
Discussion on "Developing a Multicurrency Expert Advisor (Part 25): Connecting a new strategy (II)"
Rashid Umarov, 2025.07.05 12:58 pm
All comments to articles are automatically translated in each language branch.
And also there is a button "Auto-translation" if he wants to read in English here.
差不多,因为是在循环中根据阈值保留在测试样本表现优秀的模型,我也差别不多,我现在采用的方法,是用多个交易品种,2015~2020的数据做为训练数据,可以补充更多市场形态,做好统一尺度,再用2020~2022年的目标交易品种数据做筛选模型,最后2022到2025的目标交易品种数据做最后的检验
Hello Maxim, I downloaded the files, train using the exist csv file, and run the produced EA, and found the result is different with the one EA attached in zip folder.
I checked the parameters, and found no clue for this.
Would you please tell me what's the reason for this.
Thanks
Hello Maxim, I downloaded the files, train using the exist csv file, and run the produced EA, and found the result is different with the one EA attached in zip folder.
I checked the parameters, and found no clue for this.
Would you please tell me what's the reason for this.
Thanks
Hi. Show me the differences, it's so hard to guess what it's about.
Hello. Show me what the differences are, it's so hard to guess what we're talking about.
I use causal_regression_orig.py to produce ea header file, then compile ea.
The result is test_result pic in below.
There are so less trades than the one you posted.
So what's the difference between these.
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
Check out the new article: Exploring Regression Models for Causal Inference and Trading.
Binary classification is a fundamental machine learning task in which the goal is to classify input data into one of two different categories or classes. In the context of a Forex trading bot, this usually means predicting a "buy" (represented as 0) or "sell" (represented as 1) signal. This approach reduces complex market dynamics to a simple directional decision.
The most significant inherent limitation of binary classification for quantitative trading is its inability to quantify the magnitude or intensity of a predicted price movement. A binary classifier only indicates whether the price is expected to move up or down, without providing any information about how much it is expected to change. This lack of granularity fundamentally limits decision-making in trading.
The accuracy of the classifier's predictions alone does not take into account the magnitude of change, and is therefore not very useful for trading. This aspect is key because it highlights that high directional accuracy (e.g. predicting the correct direction 70% of the time) does not automatically lead to profitable trading.
There is an important observation that high direction accuracy does not guarantee profitability. For example, you can be right 30% of the time and be profitable, or you can be right 70% of the time and be unprofitable. This demonstrates that the net result of a trading strategy is determined by the amount of profit on winning trades compared to the amount of loss on losing trades, and not simply the percentage of wins.
Author: dmitrievsky