ForgeAI

Empowering MQL5 developers with native, high-performance neural networks. No DLLs. No latency. Pure intelligence.

// Define model architecture
CSequential *model = new CSequential();
model.Add(new CDenseLayer(64, "relu"));
model.Add(new CDenseLayer(1, "sigmoid"));

// Compile and train
model.Compile("adam", "mse");
model.Fit(inputs, targets, 100, 32);

Native Execution

Runs directly within MetaTrader 5 using optimized matrix operations. Zero external dependencies or slow API calls.

Modular Design

Layer-based architecture inspired by industry standards like Keras and PyTorch. Easy to extend and customize.

Open Source

Built by the community for the community. Fully transparent code for maximum trust in your trading environment.