try it on demo first. this ea trades only with the price of open candle! if you do not want to trade with increasing lot size when you lose a trade set:"increasefactor=0" inputs ...
this ea will export the close data of x candles every z seconds. the main use of this ea is to automatically update csv file and python can pick it up smoothly....
i wrote this function as an easy template for accessing the current day's trading history. can be expanded upon by the user by adding additional doubles, i.e. volume, or for differ...
input parameters 2. local variables initialization 3. main code explaining the strategy, everyday bot will delete all the old orders and find highest and lowest value of the previo...
samy thuillier, trader spécialisé sur les forward, warrant et turbo. recommandations de samy:assurez vous de ne pas être en position directionnelle pour éviter la catastrophe en ca...
forex trade manager grid mt4 helps you to managing orders and achieve the goal. you only need to place first order with take profit, run ea and set in params profit (pips) you want...
forex trade manager mt4 simplifies managing open orders in metatrader 4. if you open a new order, the manager automatically sets stop loss and take profit. when price will move, th...
forex trade manager grid mt5 helps you to managing orders and achieve the goal. you only need to place first order with take profit, run ea and set in params profit (pips) you want...
forex trade manager mt5 simplifies managing open orders in metatrader 5. if you open a new order, the manager automatically sets stop loss and take profit. when price will move, th...
1. input parameters 2. local variables initialization3. main code a/ expert initialization functionb/ expert tick function3.1 calculate signal in order to send orders3.2 calculate ...
it is common for expert advisor developers to face the challenge of making the robot capable of opening and administering more than one order at the same time. for that, there need...
strategy tested on eurusd pair, works best on m15 period.indicators used:- ema (default period 34)- cci (default ma period 50)- macd (default mt5 settings)the strategy goes as foll...
this ea is a sample for multicurrency system for metatrader 5.entry is just using a simple candle logic on d1.hope this ea can be a help for others to learn....
the input parameters are: tp - this is a number, and the robot will take profit when tp*invested money is reached in profits (recommend 0.01-0.1). slowmovingaverage is the period o...
the function takes two arrays of integers as parameters: "allowedperiods" and "periodstocheck". "allowedperiods" is an array containing all the time periods allowed by the system, ...
the dd_relative function calculates the relative profit or loss (drawdown) of the current trading account in percentage. to do this, it uses the current_lossorprofit() function to ...
if all of a sudden consecutively some trades turned into losses we may require to pause the trading for sometime. because it maybe either market choppiness or extreme volatility wh...
this expert identifies macd divergence whenbuysstochastic main line > signal line stochastic is between oversold levels ( control over duration how long has stochastic between t...
includes ea & alert only with arrows.this ea buys whenmacd divergence occurs on 5 minute timeframe 1 hour stochastic main line is greater than signal line & between upper l...
this expert advisor uses three indicators to identify reversal of the price of a symbol. it uses a simple moving average along with a standard deviation and the rsi.it sends a buy ...
crypto ea for eth/usd pair. i trade eth/usd using a simple system. i'm tired of constantly following the schedule. i missed signals at night, sometimes i missed signals during the ...
include file contains moving average group, a moving average group with 6 moving averages in period_w1, and a moving average group with 6 moving averages in period_current.ma group...
this is a snippet of a larger code that is based on finding break of market structure.it identifies the most recent fractal price value and comments the result on the charts.it doe...
you need to do your own ta for the best results. you decide which direction you want the ea to place trades in (you can go long and short, but hedging won't work) & the ea will...
if you're a trader who constantly juggles multiple open positions and needs to adjust stop losses as trades progress, you know how time-consuming and stressful this can be. but wit...
if you're a trader who constantly juggles multiple open positions and needs to adjust stop losses as trades progress, you know how time-consuming and stressful this can be. but wit...
get trade history files (.csv) and put it in ..\mql5\file folder and save the name of file (.csv). for time differences of broker's terminals, use the same broker's meta trader 5 ...
this ea takes calculates the current account balance and based on user's input of risk and profit percentage , it can close trades either in profit or in loss.this tool might be he...
the expert will help you change the tp/sl of all open orders by setting the tp/sl based on the input percentage value.recommendations:change the tp/sl accurately only if all open o...
this class allows you to create buttons on the chart as if they were chart objects(have time and price coordinates) these objects can be dragged on the chart and when scrolling the...
this class allows you to create buttons on the chart as if they were chart objects(have time and price coordinates) these objects can be dragged on the chart and when scrolling the...
the code provided is an mql5 expert advisor (ea) script that is based on the idea of closing open positions when they have reached a user-defined profit or loss threshold, calculat...
this expert advisor (ea) for metatrader 5 (mt5) opens multiple buy and sell orders based on user input. the ea has input variables for the number of buy and sell orders, risk perce...
this code is a risk management strategy for an expert advisor in metatrader that manages existing trades based on the input parameters. it focuses on closing trades when a profit o...
best used on the 15 minute timeframe on eurusd.this expert advisor (ea) for metatrader 4 (mt4) buys when price breaks above the ma and sells when price breaks below the ma. user ca...
this ea is a money management algorithm for opening and closing positions and uses martingale with a "multiplier".run ea before opening any positions to get the best result. run "m...
1. input parameter 2. local variables initialization 3. main code a/ expert initialization functionb/ expert tick function3.1 calculate signal in order to send orders3.2 calculate ...
it is common for novice developers to face the challenge of making the expert advisor able to detect if there are open orders independently, without using the orderstotal() functio...
this strategy is based on some very interesting enter criterias and usefull funtcions are included which i used to create this trading bot. it has shown very good potential in the ...
on contrast with trailing stop which a stop loss trails price until the price hits the stop loss and the position gets closed in profit, introducing trailing take profit which take...