# Bring your traders something useful.

> Traders stay with people who help them. AlgoBarsX is a free tool your traders can use to build and test their own rules, with their existing broker account.

Source: https://algobarsx.com/for/introducing-brokers/

## What gets in your way.

- **Nothing to offer but a link** Traders hear the same pitch from everyone.
- **Traders who give up** Without tools or a plan, many stop within months.
- **Hard-to-explain products** If you cannot show it in a minute, they move on.

## How AlgoBarsX helps.

- **A free tool** $0 a month, no card. Easy to recommend. [See pricing](https://algobars.com/pricing)
- **Show it in one minute** The rule builder on the homepage needs no account. [Try it](https://algobarsx.com/#try)
- **No coding needed** Plain words, or plain English turned into code. [Read more](https://algobarsx.com/docs/first-strategy/)
- **They keep their account** AlgoBars links to accounts at supported brokers. [See broker list](https://algobars.com/brokers)
- **An affiliate programme** AlgoBars runs one. Details are on the AlgoBars site. [See affiliates](https://algobars.com/affiliates)
- **Teach, do not tip** Help traders build their own rules instead of handing out signals. [Read more](https://algobarsx.com/for/educators/)

## Code your whole team can read.

This is a complete strategy. A risk manager, a partner or a new hire can follow it. The compiler also writes it out in plain English.

```algobarsx
strategy "EMA Cross"
    market: EURUSD
    bars: 15m

input fast = 20
input slow = 50

when crosses_above(ema(close, fast), ema(close, slow)):
    buy risk: 1%, stop: 25 pips, target: 2R

when crosses_below(ema(close, fast), ema(close, slow)):
    close_all
```

The compiler reads it back:

> When the EMA of the close over `fast` bars crosses above the EMA of the close over `slow` bars, it buys at market, risking 1% of the balance, with a stop 25 pips from the entry and with a target 2R from the entry.

> When the EMA of the close over `fast` bars crosses below the EMA of the close over `slow` bars, it closes all trades.

> **Please keep it honest.** Do not promise profits or imply that a tool makes trading safe. Tests are hypothetical and leave out costs. Rules on introducing clients differ by country, and following them is your job.

## Good questions.

**Do I need to know how to code?** No. The code reads like plain words, it reads itself back in English, and you can type your idea in plain English and press Convert to AlgoBarsX.

**Does AlgoBars hold client money?** No. AlgoBars is software, not a broker. It links to accounts at supported brokers. It never holds money and it does not give advice.

**Will live results match a backtest?** No. Tests use past prices and leave out spread, fees, swaps and slippage. Past results do not tell you what will happen next.

## Important

Trading is risky and you can lose money. AlgoBars is software, not a broker or an adviser. Backtests are hypothetical and leave out spread, fees, swaps and slippage. AlgoBarsX is in beta.
