Trading signals module based on ColorJFatl indicator – library MetaTrader 5

Fig.1. Deals examples on the chart
The signal is formed when a bar is closing. The moment, when ColorJFatl indicator changes its color, indicates the time for market entry. Place ColorJFatl.ex5 compiled file to the terminal_data_folder\MQL5\Indicators. Creation of a trading robot based on this trading signals module has nothing special in it. It has been described in details in the article … Read more

Trading signals module based on SilverTrend_Signal indicator – library MetaTrader 5

Fig.1. Deals examples on the chart
The signal is formed when a bar is closing. SilverTrend_Signal indicator’s color dot serves as a market entry signal. Place SilverTrend_Signal.ex5 compiled file to the terminal_data_folder\MQL5\Indicators. Creation of a trading robot based on this trading signals module has nothing special in it. It has been described in details in the article “MQL5 Wizard for Dummies”. … Read more

Trading Signal Module – plain MA crossover Signals – library MetaTrader 5

Signal visible in Expert Advisor Wizard
The basic idea of this simple MA crossover system is the utilization and possible use within the Expert Wizard. Only the so called Direction() function is implemented which has a simple buy and sell signaling when the fast MA is crossing the slow moving average signal.   The timeframe can be adjusted as an input … Read more

MQL5 Wizard – Trading Signals of Candlestick Patterns + Stochastic – EA MetaTrader 5

Fig. 1. Selecting "Signals based on Candlestick Patterns+Stochastic" trading signals generator in MQL5 Wizard
Description: With MQL5 Wizard, traders now can automatically generate Expert Advisor’s code based on trading signals’ classes, positions tracking and money management. Along with trading signals’ classes of the Standard Library, you can develop and test your own trading systems. To do this, just write a module of trading signals. The book “The Strategies of … Read more

CSV signals to Expert – EA MetaTrader 4

CSV signals to Expert - expert for MetaTrader 4
Author: Louis Christian Stoltz How to load csv signals into an expert advisor. Here is some sample csv data: Magic, opendate, closedate,openprice,closeprice,stoplevel,profitlevel,type,symbol1,2014-01-23 14:43:00,2014-01-23 15:43:00,1.36440,0.00000,0.00000,0.00000,Buy,EURUSD 2,2014-01-23 14:43:00,2014-01-23 16:43:00,1.36440,0.00000,0.00000,0.00000,Buy,EURUSD Important: Files can only be opened in the terminal_directory\experts\files folder (terminal_directory\tester\files if for expert testing) So csv files must go there in those two folders. Recommendations: Copy signals.csv … Read more

Sacred Chao – Signals from Trading Chaos, 2nd Edition – indicator MetaTrader 5

Sacred Chao - Signals from "Trading Chaos"
“The Sacred Chao symbolizes absolutely everything anyone need ever know about absolutely anything, and more! It even symbolizes everything not worth knowing, depicted by the empty space surrounding the Hodge-Podge.” The indicator shows: An Alligator (Jaws, Teeth, Lips); Bullish/Bearish Divergent Bars (1st Wise Man) that are closing completely below/above the Alligator (countertrend); Bullish/Bearish Super AO … Read more

Trading Signals Module Based on Delta ZigZag Indicator – library MetaTrader 5

Fig. 1 Example of the trading signals based on Delta ZigZag indicator
Trading signals module based on Delta ZigZag indicator for MQL5 Wizard. Buy Signals: When the price breaks indicator’s horizontal level from the bottom up, it is assumed that a descending trend has been replaced by an ascending one, and the module displays buy signal. Sell Signals: When the price breaks indicator’s horizontal level from top … Read more

Trading signals function. – library MetaTrader 4

Trading signals function. - library for MetaTrader 4
The trading signals function is based on the values of the OsMA indicator. Add the function to the EA: #include <Signal.mqh> Condition if(GetSignal()==1) is for buys Condition if(GetSignal()==-1) is for sells Test Example: Symbol EURUSD (Euro vs US Dollar) Period 1 Minute (M1) 2009.01.19 00:00 – 2009.01.23 23:59 (2009.01.19 – 2009.01.24) Model Every tick (the … Read more

Trading signals function. Based on the values of the CCI indicator. – library MetaTrader 4

Trading signals function. Based on the values of the CCI indicator. - library for MetaTrader 4
Trading signals function. Based on the values of the CCI indicator. Add the function to the EA: #include <Signal.mqh> Condition if(GetSignal()==1) is for buys. Condition if(GetSignal()==-1) is for sells. External variables of the function: periodCCI – the period of averaging for calculation of the indicator. applied_price – Used price. It can be any of the … Read more