Produtos publicados

Mais votados
EvolutionaryTrader
Dipak Dilip Reddy
5 (1)
The provided code is an example of an Expert Advisor (EA) written in MQL5, a programming language used for creating algorithmic trading systems in MetaTrader 5. Here is a breakdown of the code: The code begins with various input parameters and settings defined using the input keyword. These parameters allow customization of the EA's behavior, such as entry lots, stop loss, take profit, and indicator parameters. Several constant values and variables are declared, including session time setti
FREE
GatorDeviation Breakout
Dipak Dilip Reddy
5 (1)
The given MQL5 code is for an Expert Advisor (EA) that implements a trading strategy using the Alligator indicator and the Standard Deviation indicator. Here's a breakdown of the code: The code defines various input parameters for the EA, including entry lots, stop loss, take profit, indicator parameters, and expert settings. The OnInit() function initializes the EA by setting some variables and validating the initialization. The OnTick() function is called on each tick of the price data and
FREE
Here's a short note explaining some of its key aspects: The code starts with defining various input parameters such as entry amount, stop loss, take profit, and indicator parameters. The code includes functions and variables to manage trading positions, handle position updates, and check entry signals. The OnInit() function is called when the EA is initialized and performs necessary initialization tasks. The OnTick() function is called on each tick and checks if a new bar has formed, then cal
The code is a trading robot that uses two indicators moving averages crossover and envelopes. It opens a buy or sell trade when the fast moving average crosses the slow moving average and the price is above or below the envelopes. It closes the trade when the opposite signal occurs or when the stop loss or take profit is reached. It also has some session settings to limit the trading hours and days. The code has some input parameters to adjust the trade size, stop loss, take profit, magic number
This strategy uses two indicators: Commodity Channel Index (CCI) and Envelopes. It opens a buy position when the CCI crosses above the lower level and closes it when the price crosses above the upper band of the Envelopes. It opens a sell position when the CCI crosses below the upper level and closes it when the price crosses below the lower band of the Envelopes. It also uses a fixed stop loss and take profit, and a trailing stop based on the previous bar’s high or low. It has some parameters t