Percentage – indicator MetaTrader 4

Percentage - indicator for MetaTrader 4
Author: Arif E. Nugroho arif_endro@vectra.web.id The problem arise when I want to know what is current daily percentage gain/loss at current price in this moment. Then I found the solutions to display current daily, weekly, monthly percentage gain in terminal windows. This will help me to know if current price is overbought or oversold at … Read more

Daily Change (Percentage Indicator) – indicator MetaTrader 4

Daily Change (Percentage Indicator) - indicator for MetaTrader 4
This indicator shows the % Daily Change of yesterday close with respect to actual price (Bid). It calculates the percentage change between yesterday close price and the actual bid price. It works on any timeframe. External Modifications: You can modify the following settings: Label_Color = DarkBlue // You can change the font color Font_Size = … Read more

Percentage Crossover Channel – indicator MetaTrader 5

Percentage Crossover Channel
Real author: Vic2008 The channel based on the price percentage deviation from the previous value of the channel middle line. The channel width is managed by the percentage deviation. This indicator was first implemented in MQL4 and published in Code Base at mql4.com 07.09.2010. Percentage Crossover Channel – indicator MetaTrader 5

Maximum Percentage of Equity Risk – library MetaTrader 5

Maximum Percentage of Equity Risk - library for MetaTrader 5
This code allows you to set a maximum percentage of equity risk. It checks if asked buy/sell lots are fitting the risk. If not, lots are automatically adjusted to fit the risk that was set. Code: bool UseMaximumPercentageRisk=true; double MaximumPercentageRisk=25; #include <Trade\SymbolInfo.mqh> //+——————————————————————+ //|  GetLotSize RPTrade                                              | //+——————————————————————+ double GetLotSize(double lotsize)   { //— Gets pair specs      … Read more

Close all orders once the drawdown reaches a specific percentage – EA MetaTrader 4

Close all orders once the drawdown reaches a specific percentage - expert for MetaTrader 4
This code has some functions to close all opened orders once the drawdown reaches a specific percentage of the account balance. You will just enter the magic number of the orders (enter 0 for control all orders), and the maximum percentage of drawdown that will allow the code logic to close the order once it … Read more