just put in something like
extern double Lots_Alert = 13; //... value at which you'd like to be alerted double Lots; //... theres prob a variable where the # of lots is stored in your EA OrderSelect(/*...however its selected in your EA...*/) Lots = OrderLots; if(Lots >= Lots_Alert) Alert(" Lots now at "Lots);
supertrade:
just put in something like
supertrade, thank you for your answer. I`ve tried to change the values but with no success. Actually I dont know much about coding. The variable you refer its strictly necessary to put in?. How does it looks like the variable?.
thx.
ifxff:
No slaves here, learn to code or pay someone. He outlined what you need to do. We're not going to do it for you.
Actually I dont know much about coding.

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Im looking for an indicator that play an alert and popup a message when open a lot of x size (previously defined). I already have an ea, but the thing is that I have it running in 10 pairs, so it will be easier to me just to hear an alert when a trade of x lot was opened, so I can make a decision to keep playing the ea or stop the ea.
The indicator could be as simple as the "Equity Alert v2.mq4", but instead of sending the alert based in the equity, sent an alert when reach the lot size predefined in the indicator settings inputs. Also it will be nice if has the option to make it alert on every tick, until you turn it off.
*Just to be more clear, my ea starts opening lots like this:
0.1, then 0.15, then 0.23, etc....so for example, I would like an indicator that send an alert in the moment that open the x lot (13.0 for example).
Thank you so much in advance.