For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Support Center
OverviewAPIResources
OverviewAPIResources
  • REST API Endpoints
      • POSTChange Speed
      • POSTCheck Replay Session
      • POSTInitialize Clock
Support Center
LogoLogo
REST API EndpointsPrices

Change Speed

POST
https://demo.tradovateapi.com/v1/replay/changespeed
POST
/v1/replay/changespeed
1const url = 'https://demo.tradovateapi.com/v1/replay/changespeed';
2const options = {
3 method: 'POST',
4 headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
5 body: '{"speed":1}'
6};
7
8try {
9 const response = await fetch(url, options);
10 const data = await response.json();
11 console.log(data);
12} catch (error) {
13 console.error(error);
14}
200Successful
1{
2 "ok": true,
3 "errorText": "string"
4}

Change the playback speed of a Market Replay session.

Was this page helpful?
Previous

Check Replay Session

Next
Built with

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Request

This endpoint expects an object.
speedintegerRequired0-400

Response

SimpleResponse
okboolean
errorTextstring<=8192 characters

Non-empty if the request failed