Skip to main content
GET
/
strategies
/
{strategyId}
/
performance
Get strategy's performance
curl --request GET \
  --url https://api.noonum.ai/v1/strategies/{strategyId}/performance \
  --header 'Authorization: Bearer <token>'
{
  "metadata": {
    "returns": 0.5957725785662527,
    "variance": 0.3299058349982667,
    "sharpeRatio": 2.031369588809071,
    "maxDrawdown": -0.1870683148674808
  },
  "timeSeries": [
    [
      1594339200,
      10000
    ],
    [
      1594944000,
      11565.68
    ]
  ]
}

Authorizations

Authorization
string
header
required

Enter 'Bearer' followed by a space and then your JWT or API Key. Example: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9... or Bearer YOUR_API_KEY_HERE

Path Parameters

strategyId
string
required

UUID of the user strategy

Query Parameters

top
integer
default:30
min_market_cap
integer
default:0

Response

200 - application/json

Stock performance of a strategy

metadata
object
timeSeries
number[][]

Time series data points [timestamp, value]

Example:
[[1594339200, 10000], [1594944000, 11565.68]]