Experts: EA SmartAssTrade. - page 6

 

Hello,

i am testing on demo account and so far it looks good !

An imporvement, if I may suggest would be to add a,symbol on the graph when an order is open and another when closed.. this helps in analysisng the order results.

In further version, we might benefit some money management in terms of % invested and % of equity max invested so we remain under confortable grounds despite the EA being applied to several pairs.

Of course these are only suggestions with my limited coding experience.

Thanks for sharing this EA.

 

Hello,

i am testing on demo account and so far it looks good !

An imporvement, if I may suggest would be to add a,symbol on the graph when an order is open and another when closed.. this helps in analysisng the order results.

In further version, we might benefit some money management in terms of % invested and % of equity max invested so we remain under confortable grounds despite the EA being applied to several pairs.

Of course these are only suggestions with my limited coding experience.

Thanks for sharing this EA.

 
jbruneau:

Hello,

i am testing on demo account and so far it looks good !

An imporvement, if I may suggest would be to add a,symbol on the graph when an order is open and another when closed.. this helps in analysisng the order results.

In further version, we might benefit some money management in terms of % invested and % of equity max invested so we remain under confortable grounds despite the EA being applied to several pairs.

Of course these are only suggestions with my limited coding experience.

Thanks for sharing this EA.

Hello jbruneau,

I think your advice was very good. ^_^
Would you explain in more detail about your suggestion?
So I can thinking out how to implement on this EA.

Regards.
 
jbruneau:

Hello,

i am testing on demo account and so far it looks good !

An imporvement, if I may suggest would be to add a,symbol on the graph when an order is open and another when closed.. this helps in analysisng the order results.

In further version, we might benefit some money management in terms of % invested and % of equity max invested so we remain under confortable grounds despite the EA being applied to several pairs.

Of course these are only suggestions with my limited coding experience.

Thanks for sharing this EA.

Hello jbruneau,

I think your advice was very good. ^_^
Would you explain in more detail about your suggestion?
So I can thinking out how to implement on this EA.

Regards.
 

dear u r EA in BEST in THE world, Thank you your support. can i use this EA in my live A/C? pls tell me how needed investment capital?

 

dear u r EA in BEST in THE world, Thank you your support. can i use this EA in my live A/C? pls tell me how needed investment capital?

 
my friend it doesn't work unfortunately....
 
my friend it doesn't work unfortunately....
 
sbsalim:

dear u r EA in BEST in THE world, Thank you your support. can i use this EA in my live A/C? pls tell me how needed investment capital?



Hi sbsalim,

On your Ac live, I think the better minimum deposit is $ 500.
EA Global Settings like this:
//--
extern bool Hedging = False;
extern string OptimizationLots = "Set LotsOptimization=True, Lots=0.0";
extern bool LotsOptimization = True;
extern double Lots = 0.1;
extern string AutomaticSystemTP = "Set AutomaticTakeProfit=True or False";
extern bool AutomaticTakeProfit = True;
extern bool NoMinimumTakeProfit = False;
extern string MinimumSystemTP = "If Set NoMinimumTakeProfit=False";
extern double MinimumTP = 15;
extern string ManualSystemTP = "If Set AutomaticTakeProfit=False"; // TP by System MT4 (same as manual trading)
extern double TakeProfit = 25;
extern string AutomaticSystemSL = "Set AutomaticStopLoss=True";
extern bool AutomaticStopLoss = True;
extern string ManualSystemSL = "If Set AutomaticStopLoss=False";
extern double StopLoss = 350;
//--
I highly recommend setting is:
Hedging = False;
LotOptimized = True;
AutomaticTakeProfit = True;
NoMinimumTakeProfit = False;
MinimumTP = 15;
AutoStopLoss = True;

Maximum 2 pairs trading and the best are (GBPJPY and EURJPY) or (EURAUD).
Because this pair will move on to the high volatility, since Servertime 00:00 till 21:00.

And good luck.

Regards.

 
sbsalim:

dear u r EA in BEST in THE world, Thank you your support. can i use this EA in my live A/C? pls tell me how needed investment capital?



Hi sbsalim,

On your Ac live, I think the better minimum deposit is $ 500.
EA Global Settings like this:
//--
extern bool Hedging = False;
extern string OptimizationLots = "Set LotsOptimization=True, Lots=0.0";
extern bool LotsOptimization = True;
extern double Lots = 0.1;
extern string AutomaticSystemTP = "Set AutomaticTakeProfit=True or False";
extern bool AutomaticTakeProfit = True;
extern bool NoMinimumTakeProfit = False;
extern string MinimumSystemTP = "If Set NoMinimumTakeProfit=False";
extern double MinimumTP = 15;
extern string ManualSystemTP = "If Set AutomaticTakeProfit=False"; // TP by System MT4 (same as manual trading)
extern double TakeProfit = 25;
extern string AutomaticSystemSL = "Set AutomaticStopLoss=True";
extern bool AutomaticStopLoss = True;
extern string ManualSystemSL = "If Set AutomaticStopLoss=False";
extern double StopLoss = 350;
//--
I highly recommend setting is:
Hedging = False;
LotOptimized = True;
AutomaticTakeProfit = True;
NoMinimumTakeProfit = False;
MinimumTP = 15;
AutoStopLoss = True;

Maximum 2 pairs trading and the best are (GBPJPY and EURJPY) or (EURAUD).
Because this pair will move on to the high volatility, since Servertime 00:00 till 21:00.

And good luck.

Regards.

Reason: