Need Coder Translator (from ESAY or EQUILLA to MT4)

 

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...

 

Looks like TradeStation code.

 
igorad:
Looks like TradeStation code.

Here's what i've found about :

News | SystemSoft

https://www.tradesignal.com/tour/chartequilla.aspx

Reason: