ATS
  • Overview
  • Getting Started
    • Quickstart
    • Sample Trading Configs
  • Basics
    • Definitions & Terminology
    • What is Market Making
    • Plots
    • Trading Report
    • Architecture
    • Exchange Configs
    • Strategy Configs
    • Canonical Namespaces
  • APIs
    • Create Trading Job
    • List Trading Jobs
    • Run Trading Job
    • Stop Trading Job
    • Get Plot Topic List
    • Plot Topics
    • Realtime Logs
  • Customizations
    • Adding a New Exchange
    • Adding a Strategy
    • Adding an Indicator
    • Custom Fee Structures
    • Adding a New Plot
Powered by GitBook
On this page
  1. APIs

List Trading Jobs

This API lists the all the existing trading jobs.

URL: /trading_job/list Method: GET

Response Structure

[
    {
        "created_time": "<YYYY-MM-DD HH:mm:ss>",
        "exchange": {
            "namespace": "exchanges:<exchange name>"
        },
        "id": "<Unique job id 1>",
        "is_running": <true or false>,
        "last_started_time": "<YYYY-MM-DD HH:mm:ss or null>",
        "strategy": {
            "namespace": "strategies:<strategy name>"
        }
    },
    {
        "created_time": "<YYYY-MM-DD HH:mm:ss>",
        "exchange": {
            "namespace": "exchanges:<exchange name>"
        },
        "id": "<Unique job id 2>",
        "is_running": <true or false>,
        "last_started_time": "<YYYY-MM-DD HH:mm:ss or null>",
        "strategy": {
            "namespace": "strategies:<strategy name>"
        }
    },
    ...
]

The returned job ID is used for running, stopping and checking status of the trading job.

PreviousCreate Trading JobNextRun Trading Job

Last updated 7 months ago