Extra Features
We can also modify previously made Expert Advisors (EA), indicators or scripts to do exactly what you want. Our programming is accurate, fast and cost-effective.
You can improve performance of your expert advisor adding following extra features!
To order one or several extra features please, contact us via e-mail: coding@mountfx.com.
Please, specify what kind of extra features you would like to add and provide us with your expert advisor or indicator for review. mq4 file (source code) is required.
- as percent of Account Balance.
- as percent of Account Equity.
- as percent of Account Free Margin.
So, on increase of Account Balance/Equity/Free Margin the lot size will grow too
You will enter an initial risk % of equity you can lose if Stop Loss is triggered.
So if Stop Loss = 50 pips, AccountnEquity = 5000 and RiskPcnt = 10.0 then you will pay only 500$ on Stop Loss.
New lot will be multiplied by 2.0 (Lot Factor = 2.0 is external parameter) if previous lot was closed in loss.
MaxLot of series will be second external parameter.
Example:
extern string _tmp3_ = " --- Trade days ---";
extern bool MondayOn = true;
extern bool TuesdayOn = true;
extern bool WednesdayOn = true;
extern bool ThursdayOn = true;
extern bool FridayOn = false;
extern bool SaturdayOn = false;
extern bool SundayOn = false;
Example: From 6:30 to 22:45 by Server Time.
- a) only profitable
- b) only losing
- c) all
Open operation will be spitted into 2 parts:
a) Open new order with 0 (zero) stop loss and 0 (zero) take profit
b) Modify sl and tp of new order to actual values.
In this case EA will manage Hidden (or invisible) stops.
Standard (or visible) stops will be available too.
Moves Stop Loss to breakeven level when trade is in profit by X pips
Simple trailing, stop loss follows by the market.
Trailing by bars High/Low.
Trailing by ATR indicator.
Trailing by Fractals.
Trailing by Parabolic Stop And Reverse indicator.
Trailing by some Trend Line added manual on the chart.
Trailing by Moving Average indicator.