
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Hi,
I've some strategies already write on ESAY and EQUILLA language and i'm looking for a coder who are able to translate them in MQL4...
Here's a example of Equilla langague :
Meta:
Synopsis( "Simple crossover of two moving averages" ),
Inputs:
Price ( Close ),
PeriodFast ( 5, 1 ),
PeriodSlow ( 20, 1 ),
Var:
FastValue, SlowValue;
FastValue=Average(Price, PeriodFast);
SlowValue=Average(Price, PeriodSlow);
If FastValue Crosses Over SlowValue then
Buy Next Bar at Market
else
BuyToCover Next Bar at Market;
If FastValue Crosses Under SlowValue then
Short Next Bar at Market
else
Sell Next Bar at Market;
DrawLine(FastValue, "Fast MA", StyleSolid, 1, DarkRed);
DrawLine(SlowValue, "Slow MA", StyleDot, 1, DarkGreen);
Someone could help ?
Thanks...