Сlose all
Info
The Сlose all is a Script for MetaTrader 4 that a collection of scripts for closing various types of orders. closeall_comment - closes all orders based on a specific comment closeall_loss - closes all orders that whose profit/loss goes over a specific loss threshold value closeall_loss - closes all orders that whose profit/loss goes over a specific profit threshold value closeall_magic - closes all orders by order magic number closeall_market - closes all market orders closeall_pending - closes all pendingorders closeall_complete - contains all the features of the 6 scripts + option for closing for symbolignored parameterswhen a parameter is ignored, the condition involving that parameter would automatically evaluate to true (as if it is not present on the script).
Usage
This tool is typically used for enhancing chart analysis and decision making.
Platform
This Script works exclusively on MetaTrader 4 (both build 600+ and newer versions).
Setup
Place the downloaded file in MQL4/Scripts folder via File ? Open Data Folder in MetaTrader 4.
How to Install and Use Сlose all
1. Installation: Move your script file into the MQL/Scripts directory and restart the platform.
2. Execution: Drag the script onto a chart; it will perform a one-time action, such as closing all open orders or clearing chart objects.
3. Editing: Use MetaEditor (F4) to modify code, click "Compile," and verify no errors appear in the terminal before running.
4. Removing: Scripts stop automatically, but you can remove them manually by right-clicking the chart and choosing "Remove Script."
Frequently Asked Questions
Q: How are scripts different from EAs? A: Scripts execute a single action and then stop; EAs monitor the market and trade continuously.
Q: Can I assign a hotkey to a script? A: Yes, right-click the script in the Navigator, select "Set Hotkey," and define your preferred keyboard shortcut.
Q: Why did my script stop? A: Scripts are designed to stop immediately after finishing their programmed command; this is normal behavior.
What this tool does
a collection of scripts for closing various types of orders.
Typical Use Case
This Script excels in automated trading and technical analysis on MetaTrader 4.
Compatible Platform & Setup
This Script works on MetaTrader 4. Place the file in the MQL4/Scripts folder and restart the terminal.
Description & Settings
Related: Fibonacci Retracement and Extension Scripts for MetaTrader 4/5 - another powerful script for MetaTrader 4 traders.
Also recommended: Sound Step Indicator: Stay Informed Without Constant Monitoring - similar script with strong performance on MetaTrader 4.
a collection of scripts for closing various types of orders.
closeall_comment - closes all orders based on a specific comment
closeall_loss - closes all orders that whose profit/loss goes over a specific loss threshold value
closeall_loss - closes all orders that whose profit/loss goes over a specific profit threshold value
closeall_magic - closes all orders by order magic number
closeall_market - closes all market orders
closeall_pending - closes all pendingorders
closeall_complete - contains all the features of the 6 scripts + option for closing for symbol
ignored parameters
when a parameter is ignored, the condition involving that parameter would automatically evaluate to true (as if it is not present on the script).
parameters of string type (order comment and order symbol) are ignored by the script when their value is either null or empty string.
parameters of real type (profit, loss, & magic) are ignored by the script when their value is -1.
using exact match
in order to get an exact match, the parameter
exact
should be equal to true. when searching for an exact match, the script respects ignored parameters.
when
exact
=false, however, the script would an close order if at least one criterion is satisfied. this means that the script should not have ignored parameters. otherwise, all orders would evaluate to true (closing the order).
You may also like: check current open orders with profit - excellent alternative for script users on MetaTrader 4.
Source Code
#property copyright "robotfx"
#property link "https://robotfx.org"
#property version "1.00"
#property strict
#property show_inputs
#property description "this code is educational. feel free to use, modify and upgrade as you wish. visit robotfx.org for professional trading tools"
#property description "this code is educational. feel free to use, modify and upgrade as you wish. visit robotfx.org for professional trading tools"
#include <order_exit.mqh>
input bool order_exact=true; //exact match
input string order_symbol=null; // order symbol
.......
⚠ Limitations & Risk Warning
- This tool is provided for educational and testing purposes only.
- Past performance does not guarantee future results.
- Trading involves substantial risk of loss. Use on a demo account first.
- Results may vary depending on market conditions, broker, and settings.
- We recommend thorough backtesting and forward testing before using with real funds.