Archive

Posts Tagged ‘expert adviser’

Metatrader Expert Adviser Authentication

February 1st, 2012 Comments off

I need a portion of code writing to add to my expert adviser that authenticates the user with a response from a server.

i.e.

http://www.somewebsite.com/EA_Auth.php?u=test@domain.com& p=QWERTY& mt=203317

u=email address p = password and mt is the Metatrader Account number

The response would be a simple yes or no.

Expert Adviser Programming 228

January 20th, 2010 Comments off

Construct an Expert Adviser for metatrader platform according to detailed instructions. Brief outline is below:
1/conditions for taking the trade -uses common indicators
2/managing the trade
3/normal added features: email alerts, on chart display, time delay between trades, lot sizes including money management, time start & stop, trailing stops etc.
4/ this expert adviser also has a stage 2 development call the ‘random variable selector option’. This is applied to just some of the variables listed in the properties. Instead of selecting just 1 value for these variables, a list of possible variables is entered & then the EA randomly selects from this list for each trade setup sequence.

Only competent MQL4 programmers apply please.

Expert Adviser Programming 304

April 30th, 2009 Comments off

Construct an Expert Adviser for metatrader platform according to detailed instructions. Brief outline is below:
1/conditions for taking the trade
2/managing the trade
3/option of ‘safety hedge’ function
4/normal added features: email alerts, spread parameter, lot sizes, time start & stop etc

Only competent MQL4 programmers apply please.

Expert Adviser Programming 274

April 26th, 2009 Comments off

This an existing expert adviser that need some further functions/indicators adding to it

Expert Adviser Programming 234

April 22nd, 2009 Comments off

To build an Expert adviser for metatrader 4.

This Expert Adviser takes an existing custom indicator & uses the signal conditions within the indicator to trigger trades.

Firstly the custom indicator used needs some extensions to allow parameter changes (change of values for indicator) to be set in the properties.

Expert Adviser:
Added variables will be standard such as:
Lot size
time start
time stop
Slippage allowed
Spread parameter
Magic number

Some conditions within the custom indicator will be able to be ‘turned off’ or ‘turned on’ by selecting true/false in the properties.

The Expert adviser uses ‘invisible stops’ – where the stops are set internally & executed by ‘instant execution’ rather than by stop limits.

Expert Adviser .mq4 Project

March 16th, 2009 No comments

To modifiy an EA used in metatrader 4 Platform.
Trades should be triggered by buying above MA Simple moving averages,
Selling below MA Simple moving averages. MA should be adjustabe.

Bear