// Algorithmic trading development

Code that trades for you

A catalog of ready-made solutions and custom development of trading EAs, indicators, and systems for MT4, MT5, TradingView, and crypto exchanges.

Clean, well-commented code
Backtesting and forward testing
Post-launch support
Tailored to your strategy
trend_follow.mq5
input group = "=== Risk Management ===";
input double RiskPercent = 1.0;
input int FastMA = 9, SlowMA = 21;

//+------------------------------------------------------------------+
int OnInit()
{
  Print("TrendFollow EA initialized");
  return(INIT_SUCCEEDED);
}
//+------------------------------------------------------------------+
void OnTick()
{
  double fast = iMA(_Symbol, PERIOD_CURRENT, FastMA, ...);
  double slow = iMA(_Symbol, PERIOD_CURRENT, SlowMA, ...);
  if(fast > slow && !PositionSelect(_Symbol))
    OpenBuy(RiskPercent);
}

Popular Products

Ready-to-use algorithms with documentation

Need a custom algorithm?

Tell us about your strategy — we'll implement it for your platform of choice, test it, and help you go live.