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. Basics

Strategy Configs

PreviousExchange ConfigsNextCanonical Namespaces

Last updated 6 months ago

Strategy configurations defines the namespace of the strategy and the parameters of the strategy. Please refer to Sample Trading Configs section to read more about how to upload Strategy Configs via the trading UI or refer to our API guide.

The following JSON structure outlines the required parameters.

"strategy":{
    "namespace": "strategies:<name of your strategy>",
    "config":{...}
}

Property
Description

strategy.namespace

The cannonical namespace of the strategy. Please refer to understand more.

strategy.config

This is the strategy configuration received by the Strategy Class. Please refer section for more details.

Canonical Namespaces
Adding a Strategy