• 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 :)

Suggestion I have Found EA Can Make real account Profitable.

No dear . i dont have mq4 file. but may be we can find some script or EA which can control maximum number of trades. i use this Ea and once it executes 10 buy or sell i hedge it. and then i clear it with 70 EMA theory . it is consistently making profit for me .
to help you i attach My 70 Ema template.
it is more then 80% win strategy i have ever found
are you sure this is EA?
If you have mql4 file, it is easily to add max order to limit your max number of trades.

code:
input int maxOrder = 10; /Max Orders

OnTick(){
...
int tOrder = OrdersTotal();
if (tOrder < maxOrders){
//continues;
...
}else{
return;
}
....
}
 
are you sure this is EA?
If you have mql4 file, it is easily to add max order to limit your max number of trades.

code:
input int maxOrder = 10; /Max Orders

OnTick(){
...
int tOrder = OrdersTotal();
if (tOrder < maxOrders){
//continues;
...
}else{
return;
}
....
}
Sorry dear . i dont have MQL4 File..
 
ATTENTION
Dear members. if you understood my system well and want to work out together. i need your help.
i want 5 different traders who start trading with me from tomorrow and put results here. i want everyone divide 1 particular currency pair. we all start practice in the morning tomorrow. i will work on gbp/usd. i want 5 person who start practice on other currency.
BELIEVE me . and give me a week. at this weekend we will see how beautiful system is . but we have to show dedication in practice,
whoever is interested to join kindly choose currency and let me know with your name here.

Thank you
King Regards..
 
I believe it is ok,
but in case if the currency counting going up / down for more then 700, 800 pips at one day or 2 days, how it will work.
 
Hello,

I am a programmer and I can easily modify your EA that you found on the net.
Give me the name of the inital file so that I find an MQ4 file and then we will add the commands in the new EA
 
Hello Prashant
Hope you won't mind my checking your EMA70 rule a bit more...
Do we actually need to place SL per your EMA70 rule since EA itself does not have SL in place
Or, we just refer EMA70 rule to close portion of our trades?
For example,
10 trades ( 7 buy and 3 sell ) than also close the chart and open 0.04 sell .
If we see either...
a. price is below the 70 EMA, and starts to go up, close all sell 0.05 lot at the first candle that closes above the EMA70
b. If the price is trading above all the EMAS, wait for it to retrace and get into the 20 EMAs range (In between both of them), once the first candle closes above the 20 EMAS range close all sell 0.05 lot
After all sell 0.05 lot were closed,
We will close all buy position until we get 2-3$ profits (not including previously closed sell postion)

Is my understanding correct, or would appreciate your correction?
I am planning to test the GU pair based my personal understanding to your advice.
I am not full time trader so would have limit time to monitor the trades, also not sure what would be best hours to run this EA. But, I would just open it when I have open slot and see how this EA work along with using your 70 EMA rule to manage the trade if it went against with 10 trades opened.
 
Last edited:
Hello popofpopof
Its great having you as programmer in the topic. Whenever possible, could you write an "indicator" that is capable of disabling the Auto Trading for entire MT4 terminal once opening trades reach predefined value (Here we would be using 10)
 
ATTENTION
Dear members. if you understood my system well and want to work out together. i need your help.
i want 5 different traders who start trading with me from tomorrow and put results here. i want everyone divide 1 particular currency pair. we all start practice in the morning tomorrow. i will work on gbp/usd. i want 5 person who start practice on other currency.
BELIEVE me . and give me a week. at this weekend we will see how beautiful system is . but we have to show dedication in practice,
whoever is interested to join kindly choose currency and let me know with your name here.

Thank you
King Regards..

Hello I am interested in helping, my name is LUIS MONTOYA, tell me what to do and I do it to help have benefits in the system

Thank you
 
Dear Members.
there is no any miracle Happens on this markets. every robot has 2 side. 1st one is loss and 2nd one is win.
All we have to do is help a Ea to make it better .
i am working on this Ea since last 3 months. it looks quiet profitable if you help him little ..

Dont Judge this EA by BT. because BT never Judge .
another reason not to BT is because BT will give you result for 24 Hour . and we are not gonna run our account 24 hour under any circumstances.

thank you . and please advice . i will let you know how we can get better result from it .
TF - M1
EUR/USD - for 1000$
EUR/USD + GBP/USD - for 1500$
Default setting
Maximum sell Or buy orders for Each pair should be 10. once 10 buy executes close the chart . and wait for the clear that trades . once it clear . open chart again.
Enjoy.

Thanks for sharing. Look promising, will try on demo first.
 
Back
Top