Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Welcome back! Thank you for being a part of this Traders Community. Let's discuss and share :)
Selamat datang kembali! Trimakasih telah menjadi bagian dari Komunitas Trader ini. Mari berdiskusi dan berbagi :)
cool it worked on another broker.if you are building any ea from this indi you have to add prefix & suffix feature in it so it will work in every broker.:ok:
in ENGLISH
Want to share EA nih gan, its function to close all orders and turn off Autotrading if the equity reaches a certain amount (by number or percent).
Very useful so EA does not make us MC when left behind
MaximalTarget: Maximal equity we expect. If it is reached then all orders will be...
if it helps - https://www.mql5.com/en/code/17496
if(MathAbs(usd-jpy)>diff_val)
{
if((usd-jpy)>0)
{
Trade("Buy",prefix+"USDJPY"+postfix);
}
if((usd-jpy)<0)
{
Trade("Sell",prefix+"USDJPY"+postfix);
}
}
if somehow the EA catches the values from the indicator i.e
+5 buy -5...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.