Watch how to download trading robots for free
Find us on Telegram!
Join our fan page
Interesting script?
So post a link to it -
let others appraise it
You liked the script? Try it in the MetaTrader 5 terminal
Experts

Support Vector Machine Learning Trader - expert for MetaTrader 5

Views:
15025
Rating:
(30)
Published:
2012.11.22 09:53
Updated:
2016.11.22 07:32
svmtrader.mq5 (14.52 KB) view
Need a robot or indicator based on this code? Order it on Freelance Go to Freelance

The example Expert Advisor below ("svmTrader") has been written to show a typical use of the support vector machine learning tool (a copy of the support vector machine learning tool can be downloaded from the MQL5 Market). This Expert Advisor works as follows:

  1. Two new support vector machines are created using the svMachineTool library. One is setup to signal new 'buy' trades and the other is setup to signal new 'sell' trades.

  2. Seven standard indicators are initialized with each of their handles stored to an integer array (Note: any combination of indicators can be used as inputs, they just need to be passed to the svm in a single integer array).

  3. The array of indicator handles are passed to the new support vector machines.

  4. Using the array of indicator handles and other parameters, historical price data is used to generate accurate inputs and outputs to be used for training the support vector machines.

  5. Once all of the inputs and outputs have been generated, both of the support vector machines are trained.

  6. The trained support vector machines are used in the EA to signal new buy and sell trades. When a new buy or sell trade signal appears, the trade is opened along with manually set Stop Loss and Take Profit orders.

Hopefully the Expert Advisor will allow you to experiment a little with the Tool. I recommend you copy/change/modify the Expert Advisor to suit your own trading style.

Block Diagram - Support Vector Machine Learning Tool

Exp_BBSqueeze Exp_BBSqueeze

The trading system based on the signals obtained from the BBSqueeze signal indicator.

Exp_Bezier Exp_Bezier

The trading system based on the change in the direction of a universal Bezier curve.

Exp_BBands_Stop Exp_BBands_Stop

The trading system based on the signals obtained from the BBands_Stop_v1 signal indicator.

isNormalDist isNormalDist

The Shapiro-Wilk normality test.