Endpoint Parameters

  • Request parameters

    Name Type Origin Description
    $skip Int Query-String Optional number of elements to skip.
    $top Int Query-String Optional number of elements to retrieve.
  • Response Parameters

    View Response Codes
    Name Type Description
    Description String User-friendly description
    MinAmountUSD Decimal Min required amount to trade
    Name String String identification
    Parameters StrategyParameter [] Strategy's specific parameters
    SupportedDurationTypes DurationType [] Supported duration types within this strategy
    SupportedOrderTypes OrderType [] Supported order types within this strategy
    TradableInstrumentTypes AssetType [] Instrument types which can be traded within this strategy
  • Request Example

    Request URL
    GET ref/v1/algostrategies/?$top=99&$skip=99
  • Response Example

    Response body
    {
      "Data": [
        {
          "Description": "stringValue",
          "MinAmountUSD": 10.0,
          "Name": "stringValue",
          "Parameters": [
            {
              "DataType": 0,
              "IsEditable": false,
              "IsMandatory": false,
              "UiDefaultValue": "stringValue",
              "UiOrderingIndex": 0,
              "UiStepSize": 1.3
            }
          ],
          "SupportedDurationTypes": [
            "GoodTillCancel"
          ],
          "SupportedOrderTypes": [
            "TrailingStop"
          ],
          "TradableInstrumentTypes": [
            "CertificateDiscount"
          ]
        }
      ],
      "MaxRows": 99
    }