No Black Boxes
Every rule you create is visible and auditable. What you see is exactly what gets executed.
Understand, test, deploy and monitor trading algorithms with just a prompt.
Free during the closed beta period · Opening this summer
Integrated With
Your entire trading strategy, automated in a single platform.
Type your strategy in plain English. No coding required.
Struggle with code no longer. Your algo, visualized as a flowchart. Read it like a sentence.
Run it against historical market data. Prove it works before risking real money.
Connect your broker with API keys. Deploy and monitor live trades.
09:30:00 - Stream connected
> RSI = 28.5 (Triggered)
> Order filled: 2.5 ETH
Forget using LLMs which you don't understand and are prone to break. Aruval visualizes your strategy logic in a flowchart mapped 1:1 to clean code, allowing you to understand code and know it won't fail on you.
Every rule you create is visible and auditable. What you see is exactly what gets executed.
Just tell Aruval what to change: "Increase the stop loss to 3%," "Only trade during market hours," or "Add an RSI filter."
"When price drops below 200-day moving average..."
By compiling your strategy into a strictly typed Intermediate Representation rather than raw code files, Aruval's visual builder is structurally designed to avoid syntax errors and other annoying, unpredictable code issues.
"type": "trigger",
"indicator": "rsi",
"params": { "period": 14 },
"op": "cross_below",
"value": 30.00 (float32)
impl Strategy for Engine {
fn on_tick(&self, t: &Tick) -> Result<()> {
let rsi = indicators::rsi::<14>(t);
if rsi.cross_below(30.0) {
self.exec.dispatch(Side::Buy)?;
}
Ok(())
}
}
Have a custom integration request or a technical question? Reach out to our engineering team at info@aruval.com .
No. Aruval generates code that connect directly to your existing broker or exchange via API. We never take custody of your funds.
Instead of generating raw code from scratch, Aruval uses a constrained schema. Every strategy visualized and inspectable, and must pass strict validation checks.
We are launching our open beta with official support for Interactive Brokers, IG Markets, and Binance. Additional platforms will be rolled out continuously based on beta user feedback.
Aruval is entirely free to use during the closed beta period, which opens this summer.