Logo of algocrab

Getting started on Algocrab

Use the chart code editor to write Dovee, run on live candles, save scripts, and publish strategies to algo trading.

1. Prerequisites

  1. Connect a broker from the broker panel.
  2. Open a chart and load a symbol with candle data.
  3. Open the code editor from the chart (code icon).

2. Run workflow

  1. Edit your Dovee script.
  2. Press Add to chart or Ctrl+Enter.
  3. Change values in the Inputs panel, then apply and run again.
  4. Check the editor console for compile or runtime messages.

3. First strategy (Dovee)

strategy "My EMA"

len = input 20 as "Length"
ma = ema(close, len)

plot ma as "EMA" blue

when close crosses above ma
  buy
when close crosses below ma
  sell

You should see the EMA line and Strategy Tester results after run. Learn Dovee syntax in the language tour.

4. Save & publish

Save from the editor to store scripts in your account. When backtests look acceptable, publish to algo trading from the chart — see Strategies.

5. Documentation

Full Dovee language docs live on this site at /docs/dovee (same content model as charting.in/docs/dovee). Open Docs from the editor status bar in a new tab anytime.

Next steps

External chart signals (TradingView, MT4, …) use Bridge — separate from the in-chart Dovee editor.

Need Help?

Feel free to contact us with any of your queries.

Email

We will get back to you within 24 hrs.

Chat

We are available during market hours.

Phone

Mon-Sat, 9 AM - 6 PM

© 2026 Algocrab. All rights reserved.

Facebook IconInstagram IconYoutube IconWhatsapp Icon