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
Indicators

Create your own neural network predictor easily (example: MA and RSI Predictors) - indicator for MetaTrader 4

Views:
29099
Rating:
(7)
Published:
2009.11.04 10:38
Updated:
2016.11.22 07:32
BPNN.dll (87.5 KB)
MA_predictor.mq4 (10.47 KB) view
Need a robot or indicator based on this code? Order it on Freelance Go to Freelance


Author:

gpwr, posted on https://www.mql5.com/en/code/9002/

I simply renamed a few vars in order to make the code easier to read, and created a new proxy function.

All the credits must go to gpwr for his much excellent source.


The BNN predictor posted by gpwr is a great indicator, but many traders were wondering how to use the source code in order to create predictors based on their own indicator.

this question being left unanswered on all the neural network related sources, I've decided to answer it.

With this modified version of the BNN Predictor, you will be able to create your own predictor, based on your own indicator.

At the end of the code, you will find a function:

double getValue(int i) {
return(iMA(NULL,0,15,0,MODE_SMMA,PRICE_OPEN,i));
}

As presented, the indicator is a Moving Average predictor. Simply replace the Moving Average indicator by another indicator. You can even use iCustom() in order to get predictions on your own indicators.


For example, if you want a RSI predictor:

double getValue(int i) {
return(iRSI(NULL,0,14,PRICE_OPEN,i));
}


Installation:

BPNN.DLL must be copied to your experts/libraries/ folder.

You must configure MT4 to allow DLL imports (Tools > options > Expert Advisors > Check "Allow DLL imports").



MA Predictor and RSI predictor on EURUSD M30


Recommendations:

  • If you have questions about Neural network, please ask the original author, as I just modified the code in order to make it easier to create new indicators.
  • If you have questions about how to adapt an indicator, then I can answer, as long as you ask in either English, French, Spanish or Portuguese. please, no Russian, Chinese or Italian as I don't speak those languages.
  • The 2 examples MA and RSI are just examples. that's why they do not offer external variables to change their period or other options.
Two Pole Smoothed Ehlers Oscillator Two Pole Smoothed Ehlers Oscillator

This oscillator is based on Ehlers' Two Pole Super Smoother, converted as an oscillator, and smoothed using Ehlers' Instantaneous trendline.

The signal lines with alert after crossing The signal lines with alert after crossing

When the price is approaching to the Signal Lines, the indicator sends Alert.

Scalpel EA Scalpel EA

A EURGBP/GBPUSD non-scalper robot

AIS5 Trade Machine AIS5 Trade Machine

Alfa Release English