Skip to content

Account and market data

This guide covers prompts for querying account information, symbols, chart periods and algo metadata through an AI agent.

List accounts

Retrieve all trading accounts linked to a cTrader ID.

List all accounts linked to my cTrader ID.
Show me my trading accounts and their details.

If your cTID has accounts with multiple brokers sharing the same account number, specify the broker to avoid ambiguity.

List accounts for broker Spotware under my cTrader ID.

List symbols

View all trading symbols available on a specific account.

What symbols are available on account 1234567?
Show me all available trading symbols.

List chart periods

View all chart periods on which algorithms can run.

What chart periods are available?

The agent returns the full list of supported periods (e.g. m1, m5, m15, m30, h1, h4, Daily, Weekly, Monthly).

Inspect algo metadata

Before running or backtesting a cBot, you can inspect its metadata to understand its parameters and requirements.

Show me the metadata for C:\test\RSI_cBot.algo.

The agent returns:

  • Name – the cBot or indicator name.
  • Type – whether it is a cBot or indicator.
  • Access rights – the permission level the algo requires.
  • Build time – when the algo was compiled.
  • Parameters – a list of all configurable parameters with their names, types, default values and constraints.

Use metadata to prepare a run

Show me the parameters for C:\test\mycbot.algo so I know what 
I can customise before running it.
What access rights does C:\test\mycbot.algo require? Do I need to 
grant full access?