Simple Expert Advisors (EA's) for MT4
This thread will be used to post simple expert advisors
To repeat the already known
____________________________
The experts that are going to be posted here are not going to be complete trading systems - after all, building a trading system is much, much harder than the majority of traders want to admit it - but to post code for simply and reliable EA code that will help traders to do quick tests of single indicator performances with different parameter settings, that will help to see the usage of some indicators that are posted as ex4 files, and that will, possible help to be used as a basic frame that traders can use to develop their own systems and expert advisors.
Tests conducted will not be aimed to make the EA profitable, but to make sure that it works as intended.
Any other development (if something is proven to be interesting for further development based on a very simple set of rules), will be conducted in a separate thread.
Re: Simple Expert Advisors (EA's) for MT4
2As simple as it gets simple moving averages cross expert advisor : simple ma cross ea.mq4 __________________It opens an order on a cross of two averages. If an order of opposite direction exists, it is first closes that order. If it fails to close the opposite order it will attempt the same thing (if the signal still exists) on the next tick (new order opening is prevented if the opposite direction order close fails). Some extra built in (like current profit for opened order display - just for the sake of simpler usage and providing a bit more information - that will probably be extended in the future versions of any of the experts posted here).It is an easy to use frame that can be used for similar tasks and, as all can see, the code is as simple as it gets. There is no need for anything more complicated for this kind of tests
Re: Simple Expert Advisors (EA's) for MT4
3Dearest MLADENmladen wrote:As simple as it gets simple moving averages cross expert advisor : simple ma cross ea.mq4 __________________It opens an order on a cross of two averages. If an order of opposite direction exists, it is first closes that order. If it fails to close the opposite order it will attempt the same thing (if the signal still exists) on the next tick (new order opening is prevented if the opposite direction order close fails). Some extra built in (like current profit for opened order display - just for the sake of simpler usage and providing a bit more information - that will probably be extended in the future versions of any of the experts posted here).It is an easy to use frame that can be used for similar tasks and, as all can see, the code is as simple as it gets. There is no need for anything more complicated for this kind of tests
First,Thanks for opening this thread as many traders were requesting and requiring for it,then your kinds as always for posting your first sample EA as simple as its name
Not as for extending your job but as for possible suggestion i request you for addition of your time control snippet within from your next ea posting.
regards
Indicator is just a tool.
Use it only if it can benefit you. Leave it if you don't know how to use it optimally.
Use it only if it can benefit you. Leave it if you don't know how to use it optimally.
Re: Simple Expert Advisors (EA's) for MT4
4Hi traders
To keep all previous simple EAs at single one place here.
"simple (Hull variation) EA"
To keep all previous simple EAs at single one place here.
"simple (Hull variation) EA"
Indicator is just a tool.
Use it only if it can benefit you. Leave it if you don't know how to use it optimally.
Use it only if it can benefit you. Leave it if you don't know how to use it optimally.
Re: Simple Expert Advisors (EA's) for MT4
5An extended version using same indicator.
"simple (Hull variation) EA 1.1"
"simple (Hull variation) EA 1.1"
Indicator is just a tool.
Use it only if it can benefit you. Leave it if you don't know how to use it optimally.
Use it only if it can benefit you. Leave it if you don't know how to use it optimally.
Re: Simple Expert Advisors (EA's) for MT4
6Here is simple (stepma of rsi adaptive ema) EA
using StepMA of rsi adaptive ema 2.8 indicator,attached too.
in picture green magenta line
using StepMA of rsi adaptive ema 2.8 indicator,attached too.
in picture green magenta line
Indicator is just a tool.
Use it only if it can benefit you. Leave it if you don't know how to use it optimally.
Use it only if it can benefit you. Leave it if you don't know how to use it optimally.
Re: Simple Expert Advisors (EA's) for MT4
7An upgraded version of same above "simple (stepma of rsi adaptive ema 2.9) EA_1"
using extended version indicator "StepMA of rsi adaptive ema 2.9" indicator
using extended version indicator "StepMA of rsi adaptive ema 2.9" indicator
Indicator is just a tool.
Use it only if it can benefit you. Leave it if you don't know how to use it optimally.
Use it only if it can benefit you. Leave it if you don't know how to use it optimally.
Re: Simple Expert Advisors (EA's) for MT4
8My favorite one an upgraded version EA on Tema "simple (stepma of rsi adaptive tema 1.1) EA"
using "StepMA of rsi adaptive tema 1.1 (indicator)"
using "StepMA of rsi adaptive tema 1.1 (indicator)"
Indicator is just a tool.
Use it only if it can benefit you. Leave it if you don't know how to use it optimally.
Use it only if it can benefit you. Leave it if you don't know how to use it optimally.
Re: Simple Expert Advisors (EA's) for MT4
9Here is a version with time filter addedmntiwana wrote: Dearest MLADEN
First,Thanks for opening this thread as many traders were requesting and requiring for it,then your kinds as always for posting your first sample EA as simple as its name
Not as for extending your job but as for possible suggestion i request you for addition of your time control snippet within from your next ea posting.
regards
What it does : if the time falls within the time filter it opens and closes orders as required. If the time is outside the time limits, it will not open new orders, but if there are orders that need to be closed, they will be closed (in order to prevent loses in cases of trend change)
Re: Simple Expert Advisors (EA's) for MT4
10Dearest MLADENSo many thanks for your so early response then it is really fantastic function you added ... "but if there are orders that need to be closed, they will be closed (in order to prevent loses in cases of trend change)" what a art full codingmladen wrote:
Here is a version with time filter added
What it does : if the time falls within the time filter it opens and closes orders as required. If the time is outside the time limits, it will not open new orders, but if there are orders that need to be closed, they will be closed (in order to prevent loses in cases of trend change)
regards
Indicator is just a tool.
Use it only if it can benefit you. Leave it if you don't know how to use it optimally.
Use it only if it can benefit you. Leave it if you don't know how to use it optimally.