personal assistant

personal assistant
Download ALL MT4 experts (885)
YouTube Video Thumbnail



Similar MetaTrader Tools

personal assistant

Info

The personal assistant is a Expert Advisor for MetaTrader 4 that personal assistant is there to make your trading easy, basically it does what a real assistant does. provides information and executes your orders.

Usage

This tool is typically used for automated trading on major forex pairs and gold.

Platform

This Expert Advisor works exclusively on MetaTrader 4 (both build 600+ and newer versions).

Setup

Place the downloaded file in MQL4/Experts folder via File ? Open Data Folder in MetaTrader 4.


How to Install and Use personal assistant

1. Installation: Open the "File" menu, select "Open Data Folder," navigate to MQL/Experts, paste your file, and restart the terminal.

2. Activation: Drag the EA from the Navigator onto a chart, ensure "Allow live trading" is checked in the Common tab, and verify the AutoTrading button is green.

3. Optimization: Right-click your chart, choose "Expert List," click "Properties" to adjust inputs, and save your preferred setup as a set file for future use.

4. Maintenance: Regularly check the "Experts" tab in the terminal window to monitor trade logs and potential execution errors.

Frequently Asked Questions

Q: Why is my EA not opening trades? A: Check the "AutoTrading" button, ensure "Allow live trading" is enabled, and verify your broker allows automated trading on your account type.

Q: Can I run multiple EAs on one chart? A: No, each chart can only host one active EA; however, you can open multiple charts for different currency pairs to run several EAs.

Q: What does the "smiley face" icon mean? A: A smiley face in the top-right corner of the chart indicates the EA is successfully running; a frowny face means it is disabled.

What this tool does

personal assistant is there to make your trading easy, basically it does what a real assistant does.

Typical Use Case

This Expert Advisor excels in automated trading and technical analysis on MetaTrader 4.

Compatible Platform & Setup

This Expert Advisor works on MetaTrader 4. Place the file in the MQL4/Experts folder and restart the terminal.

Description & Settings

Related: Order Management Assistant - another powerful expert for MetaTrader 4 traders.


personal assistant is there to make your trading easy, basically it does what a real assistant does. provides information and executes your orders.

Also recommended: personal assistant - the next generation - similar expert with strong performance on MetaTrader 4.

i wrote this ea for several reasons:

to display important information on the chart when i use full screen in metatrader 4;

to separate manually opened orders by id with ease and display their current performance (so if you have many opened orders for different strategies or different eas, you want simple view and control over them);

to calculate value of stop loss, take profit, margin required, tick value for me;

to quickly open or close orders with a press of a button.personal assistant functions are:

display ea name and id (to separate more than one personal assistants and to easily know which one is attached to the chart);

display symbol and timeframe;

display leverage for account;

display lot volume value currently selected;

display tick value for lot volume value (in deposit currency);

display margin required for new order based on lot value currently selected;

display current spread;

display profit/loss sum for all orders opened by this ea, calculated in deposit currency;

display number of orders currently active for this ea;

display take profit sum — if opened orders have set tp, then it displays average tp, if tp isn't set, then it displays 0, if tp is set for some orders and not for all, it will calculate average only for positions with tp set;

display stop loss sum — if opened orders have set sl, then it displays average sl, if sl isn't set, then it displays 0, if sl is set for some orders and not for all, it will calculate average only for positions with sl set;

open long position with a press of key number 1 with settings ea is currently set to;

open short position with a press of key number 2 with settings ea is currently set to;

close positions opened by this ea with a press of key number 3, alert: if conditions of market change rapidly it may not close all orders, so always check opened orders, or push 3 once more;

increase lot volume value with a press of key number 4 — hold button to quickly increase value;

decrease lot volume value with a press of key number 5 — hold button to quickly decrease value.
attention:
use with caution, it's your own responsibility if you by accident open unwanted orders! make sure that you have the right chart selected when inputting commands.
image of personal assistant on the chart:
user input variables:

id — magic number for your ea and for your orders opened by ea;

display_legend — shows legend on the chart for buttons/commands (open long, open short, close orders, increase volume, decrease volume);

lotsize — initial volume value;

slippage — slippage for opening and closing orders;

text_size — size of the text displayed on the chart;

text_color — color of text displayed on the chart;

right_edge_shift — position of text on the chart from the right edge of window in pixels;

upper_edge_shift — position of text on the chart from the upper edge of window in pixels and position of row from the previous row;
alert me of potential problems, test it on demo first!
update:

now displays how many opened positions have sl and tp set.

fixed sl and tp value calculation.

You may also like: grid assistant - excellent alternative for expert users on MetaTrader 4.

Source Code

#property copyright "robotfx"
#property link "https://robotfx.org"
#property version   "1.00"
#property strict
#property description "this code is educational. feel free to use, modify and upgrade as you wish. visit robotfx.org for professional trading tools"
input int id=3900;
input bool display_legend=true;
input double lotsize=0.01;
input int slippage=2;
input int text_size=10;

.......

Leave your opinion, ask a question, share some knowledge

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.
© ROBOTFX Free educational tools by RobotFX. Use entirely at your own risk; we are not liable for any financial losses incurred.