tipu ea
Info
The tipu ea is a Expert Advisor for MetaTrader 4 that this is a simple ea based on and indicators found in the market. this ea is for educational purposes only and does not guarantee any profit.
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 tipu ea
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
this is a simple ea based on and indicators found in the market.
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: tipu ma c d ea - another powerful expert for MetaTrader 4 traders.
this is a simple ea based on and indicators found in the market. this ea is for educational purposes only and does not guarantee any profit.
Also recommended: alexav speed up m1: enhancing trading efficiency - similar expert with strong performance on MetaTrader 4.
ea rulesthe following are the rules of this ea.
step #1
.
define trade entry - this ea defines trade entry as tipu trend m15 signals confirmed by the h1 trend and filtered by risk tolerance set by the user. for example, if trend on h1 is upward it will look at buy signals on m15 lower timeframe. if there is a buy signal, it will then compare calculated stop loss (using tipu stops = swing low) with the risk tolerance set in "sl risk per trade pips". if everything is okay it will move to the next step.
step #2
.
open trade - this ea opens only trade per signal. the default lot size is 0.01.
step #3
.
manage trade - there are three ways to manage the trade.
use sl/tp - these settings are defined in pips. you can enable/disable these settings.
use risk free trade - this is a pyramiding feature that adds to the current position and the same time changes the stop loss to break-even. for example, if you have 0.01 buy position, it will add 0.01 lots buy order (to a maximum 0.03 lots) after a 10 pips profit and at the same time change the stop loss to 10 pips. this will make the new 0.01 lots trade as a risk free trade, in a way that if both of the orders go against you, both of them will get closed with no gain/loss.
use trail stop - the trail stops in this ea is implemented in step. for example, when you have a profit in buy trade it will lock profit in increments of 10s, 20s, and 30s, and will always leave a safe cushion (option = trail cushion between current price and sl) between the current stop and current market. you can enable/disable these settings. parameters
hedge
- choose true if you want to open buy/sell orders at the same time using the rules. this will only work if your broker has enabled hedging on your account. you should also make sure close trade on reverse signal is disabled.
close trade on reverse signal
- choose true to close orders on reverse signals.
tp
- enable/disable settings
tp pips
- this is tp settings in pips
sl risk per trade pips
- you cannot disable this setting. this risk pips checks the settings with tipu stops. this is an additional filter for the trade.
lots per order
- the default setting is 0.01
add risk free trade
- the risk free trade settings with additional settings for pips increment, incremental lots, and maximum lots
trail sl
- enable/disable settings
trail profit pips
- this is the trail stop step settings. the default setting is 10. the ea will trail stop in increments of 10s, 20s, 30s, and so on.
trail cushion between current price and sl
- this setting keeps a safe distance between the trial stops and the current price, so the trades are not closed right
magic number
- used in ea management
You may also like: simple trailing stop - excellent alternative for expert users on MetaTrader 4.
Source Code
#property copyright "robotfx"
#property link "https://robotfx.org"
#property version "1.00"
#property strict
#import "stdlib.ex4"
string errordescription(int e);
#import
#define pipspoint get_pipspoint()
#define pipsvalue get_pipsvalue()
struct strc_tipu
.......
⚠ 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.