Next price predictor using Neural Network – indicator MetaTrader 4

Next price predictor using Neural Network - indicator for MetaTrader 4
Autor: gpwr Version History: 06/26/2009 – added a new indicator BPNN Predictor with Smoothing.mq4, in which prices are smoothed using EMA before predictions. 08/20/2009 – corrected the code calculating the neuron activation function to prevent arithmetic exception; updated BPNN.cpp and BPNN.dll 08/21/2009 – added clearing of memory at the end of the DLL execution; updated … Read more

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

Create your own neural network predictor easily (example: MA and RSI Predictors) - indicator for MetaTrader 4
Author: gpwr, posted on 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 … Read more

Predictor Marks for Renko, Mean Renko and Range Bars – indicator MetaTrader 4

Marks on range bars
A simple mark on a chart predicts the future candle close, so a manual trader/scalper can easily monitor the chart, how far the candle can go before it closes. This code works for Renko, mean (medium) Renko and range bars offline charts only. Predictor Marks for Renko, Mean Renko and Range Bars – indicator MetaTrader … Read more

BPNN MQL Predictor Demo with library – indicator MetaTrader 5

BPNN MQL library embedded into predicting indicator
This is not a real world indicator, but a simple demo of BPNN library, originally written in C++ and ported to MQL. The demo shows training and testing a neural network for timeseries prediction. Please find complete description of the neural network on the page of the original BPNN Predictor indicator, which uses DLL-library. In … Read more