Terminal
- Added support for the new order filling policy — Passive / Book or Cancel (BOC).
The BOC policy indicates that an order can only be placed in the Depth
of Market (order book). If the order can be filled immediately when
placed, this order is canceled. This policy guarantees that the price of
the placed order will be worse than the current market price. BOC is
used to implement passive trading: it is guaranteed that the order
cannot be executed immediately when placed and thus it does not affect
current liquidity. This filling policy is only supported for limit and
stop limit orders in the Exchange Execution mode.
The availability of the new filling policy depends on the broker.
- The platform switches to using Microsoft Edge WebView2 for displaying the HTML content.
Compared to the outdated MSHTML, the new component significantly
expands content displaying capabilities by providing access to modern
technologies. The use of WebView2 improves the appearance of some
platform sections, increases performance, and creates a more responsive
interface. In particular, the new component will affect the Market,
Signals and VPS sections.
Full support for WebView2 was introduced in Windows 10. We
strongly recommend that all users upgrade to the latest operating system
version and install all available updates. The platform will continue
to use MSHTML under Windows 7 and Wine, but the new features will not be
available. The minimum recommended operating system version is Windows
10 21H2 (build 19044, November 2021).
- Improved Market
security system. Now, in order to run the product, the user must be
authorized in the platform with the same MQL5 account via which the
product was purchased. The account must be specified under the Tools \
Options \ Community section:
If no account or an invalid account is specified, the product will not
start, and the following message will be printed in the platform
journal:
'ProductName' requires active MQL5 account in Tools->Options->Community
- Added Overview command to the history section context menu. The command opens a trading report for the account:
- Fixed display errors in the two-factor authentication
dialog. If the terminal had several accounts with the same number but
opened with different brokers, the account connection form could fail to
display the one-time password field.
- Implemented faster rendering of indicators with the DRAW_COLOR_CANDLES display style.
- Fixed trading report creation errors. On-chart profit
and equity values could be displayed incorrectly under certain
conditions.
- Added display of Costs in the trading report. The
value shows the total costs incurred when performing deals relative to
the symbol's current mid-point price (mid-point spread cost). This is
the amount which the trader lost due to the spread. The availability of
this value depends on the broker.
- Updated UI translations.
- Improved stability under Wine, especially on macOS
systems. We recommend completely removing old terminals and
re-installing them:
- Accelerated package installation and updates downloading procedures. Improved analysis of AVX availability on the user's computer when selecting a distribution package.
- Enabled support for TLS 1.3 in web protocols. TLS 1.0
is considered deprecated and insecure and has therefore been disabled.
- Fixed accounting for agent commissions in trading
history reports. The relevant transactions could be ignored when
calculating the final profit.
- Fixed the inability to change the server in the
account connection dialog. The issue arose when there were several
accounts in the terminal with the same number from different brokers.
From this build onwards, the installers will work only with 64-bit
platform versions. Support for 32-bit versions will be discontinued.
Previously installed 32-bit platform versions will work until January 1,
2024.
MQL5
- Added new STAT_COMPLEX_CRITERION value in the ENUM_STATISTICS enumeration. Use the property to obtain the calculated complex criterion value, as a result of optimization.
- Improved RegressionMetric
method used for calculating the regression metric based on the passed
matrix or vector. Added vector_true and matrix_true parameters for
passing true values which evaluate the predicted data quality.
double vector::RegressionMetric(
const vector& vector_true,
const ENUM_REGRESSION_METRIC metric
);
double matrix::RegressionMetric(
const matrix& matrix_true,
const ENUM_REGRESSION_METRIC metric
);
vector matrix::RegressionMetric(
const matrix& matrix_true,
const ENUM_REGRESSION_METRIC metric,
const int axis
);
- Added the LinearRegression method. It returns a vector/matrix with calculated linear regression values for the passed vector/matrix.
vector vector::LinearRegression();
matrix matrix::LinearRegression(
ENUM_MATRIX_AXIS axis=AXIS_NONE
);
Example:
vector vector_a;
vector_a.CopyRates(_Symbol,_Period,COPY_RATES_CLOSE,1,100);
vector vector_r=vector_a.LinearRegression();
The results are visualized in the graph:
- Added the HasNan method, which returns the number of NaN values in a matrix/vector.
ulong vector::HasNan();
ulong matrix::HasNan();
When comparing the appropriate pair of elements having NaN values, the Compare and CompareByDigits methods consider these elements equal, while in case of a usual comparison of floating-point numbers NaN != NaN.
-
Modified the OnnxTypeInfo structure which is used for operations with ONNX (Open Neural Network Exchange) models:
struct OnnxTypeInfo
{
ENUM_ONNX_TYPE type;
OnnxTensorTypeInfo tensor;
OnnxMapTypeInfo map;
OnnxSequenceTypeInfo sequence;
};
The data type is specified in the structure using new substructures:
- OnnxTensorTypeInfo — tensor
- OnnxMapTypeInfo — map
- OnnxSequenceTypeInfo — sequence
struct OnnxTensorTypeInfo
{
ENUM_ONNX_DATATYPE data_type;
long dimensions[];
};
struct OnnxMapTypeInfo
{
ENUM_ONNX_DATA_TYPE key_type;
OnnxTypeInfo type_info;
};
struct OnnxSequenceTypeInfo
{
OnnxTypeInfo type_info;
};
Depending on OnnxTypeInfo::type (ONNX_TYPE_TENSOR, ONNX_TYPE_MAP or ONNX_TYPE_SEQUENCE), the relevant substructure is filled.
- Improved support for ONNX models.
- Added CopyIndicatorBuffer methods which enable the obtaining of indicator buffer data into a vector.
bool vector<T>::CopyIndicatorBuffer(long indicator_handle,ulong buffer_index,ulong start_pos,ulong count);
bool vector<T>::CopyIndicatorBuffer(long indicator_handle,ulong buffer_index,datetime start_time,ulong count);
bool vector<T>::CopyIndicatorBuffer(long indicator_handle,ulong buffer_index,datetime start_time,datetime stop_time);
- Fixed operations with arrays having two or more dimensions in the FrameAdd and FrameNext methods.
- Fixed CRedBlackTree::Remove Standard Library method.
- Implemented fixes in the Fuzzy Logic library.
MetaEditor
- Added integration with the advanced automatic coding AI Assistant. Its operation is based on OpenAI models.
Enter a comment or part of a function and send a prompt. The neural
network will analyze the prompt and will offer coding options to
implement the idea.
Depending on the file type, the string "MQL5 language", "Python
language" or "C++ language" is automatically inserted at each prompt
beginning. Thus, the neural network will provide the result in the
required language.
AI Assistant is currently free and is already
enabled in the editor. There are several options available under Tools \
Options \ AI Assistant:
Payment settings:
- Use your MQL5 account: this option is currently available
for free. Later, you will be able to pay for the subscription directly
from your MQL5 account balance.
- Use an OpenAI key, if you have purchased a subscription and have the relevant key.
Prompt settings:
- Model — a neural network which will process your requests.
text-davinci-003 and gpt-3.5-turbo are currently available. Support for
gpt-4 will be added soon.
- Maximum tokens — the number of text units which the model can return in response to a prompt.
- Variability — affects how strictly the neural network will
follow the prompt. The bigger the value, the greater the result
randomness. This option corresponds to the temperature parameter in OpenAI models.
- Added ability to view the properties of ONNX models.
You can view the contents of the *.onnx file directly in the editor. As
an example, find the project ONNX.Price.Prediction under Toolbox \
Public Projects and select Join in the context menu. The project will be
downloaded to your computer and will appear in the Navigator.
- Added ability to visualize machine learning models and neural networks using Netron. This viewer supports popular models, including ONNX, TensorFlow Lite, Caffe, Keras and ncnn, among others.
To view a model, select its file in the Navigator and click "Open in Netron". If this utility is not installed, its GitHub page
will open, from which you can download the relevant installer,
according to your operating system. For example, use
Netron-Setup-X.X.X.exe for Windows. If the program is installed, the
model will immediately open for viewing from the Navigator.
Supported formats:
- armnn, caffemodel, circle, ckpt, cmf, dlc, dnn, h5, har, hd5, hdf5, hn, keras, kmodel,
- lite, mar, meta, mge, mlmodel, mlnet, mlpackage, mnn, model, nb, ngf, nn, nnp,
- om, onnx, ort, paddle, param, pb, pbtxt, pdiparams, pdmodel, pdopt, pdparams, prototxt, pt, pth, ptl,
- rknn, t7, tfl, tflite, tmfile, tm, tnnproto, torchscript, uff, xmodel
- Updated UI translations.
Tester
- Fixed calculation of the "Average losing trade" metric in the testing report. Previously, the calculation could erroneously include entry deals if commissions were charged for such deals.
- Improved custom commission options in the strategy tester. To set a symbol, specify its name rather than the entire path.
- Updated icons in the strategy tester. New metaphors will make them easier to understand.
Fixed errors reported in crash logs.
Web Terminal
- Improved trading history section:
- Added display of balance operations in the trading history, such as deposits and withdrawals, commissions, and adjustments.
- Added display of totals in the trading history: balance,
profit, commission, deposits, withdrawals and number of orders, among
others.
- Added ability to sort operations and filter the history by depth in the mobile version.
- Enhanced symbol contract specifications. The following
information has been added: volume limit, tick size and value, initial
and hedged margin.
- Improved color schemes:
- Pending orders are displayed in gray on the chart. The
position color depends on the direction: red for Sell and blue for Buy.
The new colors provide easier navigation especially if a lot of
operations are displayed on the chart.
- When viewing/editing a position, only this position and its
levels are highlighted, while all other positions and orders become
gray, and their levels are hidden from the price scale. Thus, it will be
easier to manage separate operations.
- The Stop Loss color has been changed from red to orange to avoid confusion with Sell positions.
- Improved on-chart icons indicating position closing time. A
green icon is used for positions closed by Take Profit and a red one is
used for those closed by Stop Loss.
- Added interface translations into Arabic, Bulgarian, Vietnamese,
Greek, Indonesian, Malay, Dutch, Persian, Polish, Thai, Ukrainian and
Hindi. The web terminal is now available in 24 languages.
- Fixed Turkish UI translations.
- Fixed modification and deletion of pending orders in the Web Terminal mobile version.
- Fixed on-chart 'closed market' tooltip.
- Fixed display of profits in the position close button in the trading dialog. The error occurred during partial closing.
- Fixed display of on-chart trading notifications.
- Fixed volume modification using arrows in the Depth of Market.
- Fixed error which could cause the settings of running indicators to be reset under certain conditions.
- Fixed username checks when opening new accounts. Previously, an apostrophe in the name was considered an error.
- Fixed processing of requotes. The dialog with the requoted prices might not be displayed under certain conditions.
- Fixed display of the Ichimoku Kinko Hyo indicator. The
Chikou-Span, Up Kumo and Down Kumo lines will be displayed with the
correct offset.
- Fixed initial margin checks when opening new orders. The error occurred in the hedging position accounting system.
- Fixed scrolling in the contract specification window.
MQL5.community
- The MQL5 Cloud Network website has been completely redesigned: https://cloud.mql5.com.
Learn how to use the processing power of thousands of computers around
the world to optimize your trading strategies. With the MQL5 Cloud
Network, even the heaviest computations can be completed in a matter of
minutes. Visit the website and find out how to participate in the
network and how to earn money by providing your computer resources.
- Improved screenshot section in Market
products. Authors can upload images up to 1920*1800 pixels to
demonstrate how applications work. The screenshot gallery has also been
updated. The carousel shows image thumbnails, and a click on them opens
full-sized images.
- Freelance section improvements. Users will now receive more tips when placing their first orders:
- Requirements specification examples and a reminder to add one
- Order creation instructions
- Template usage tips
These tips can assist you in creating the order and in receiving the desired result.
See the previous news, please: