@qtsurfer/api-client 0.1.0 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,534 +0,0 @@
1
- /**
2
- * General response error
3
- */
4
- export type ResponseError = {
5
- /**
6
- * Status code
7
- */
8
- code: number;
9
- /**
10
- * Error description
11
- */
12
- message: string;
13
- };
14
- /**
15
- * Exchange instrument identifier (e.g. a currency pair)
16
- */
17
- export type Instrument = string;
18
- /**
19
- * Exchange instrument with data availability and market info
20
- */
21
- export type InstrumentDetail = {
22
- /**
23
- * Instrument identifier (e.g. currency pair)
24
- */
25
- id: string;
26
- /**
27
- * Base currency
28
- */
29
- base: string;
30
- /**
31
- * Quote currency
32
- */
33
- quote: string;
34
- /**
35
- * Earliest timestamp with quality-verified data available for backtesting
36
- */
37
- dataFrom?: string;
38
- /**
39
- * Latest timestamp with quality-verified data available for backtesting
40
- */
41
- dataTo?: string;
42
- /**
43
- * Last traded price
44
- */
45
- lastPrice?: number;
46
- /**
47
- * Trading volume in the last 24 hours (in quote currency)
48
- */
49
- volume24h?: number;
50
- };
51
- /**
52
- * Exchange service provider
53
- */
54
- export type Exchange = {
55
- /**
56
- * Unique identifier for the exchange
57
- */
58
- id: string;
59
- /**
60
- * Name of the exchange
61
- */
62
- name: string;
63
- /**
64
- * Description of the exchange
65
- */
66
- description?: string;
67
- };
68
- /**
69
- * Managed exchange data sources available for backtesting. Currently only ticker is supported; kline and funding rate support is planned.
70
- */
71
- export type DataSourceType = 'ticker';
72
- /**
73
- * Information about a single job
74
- */
75
- export type JobState = {
76
- /**
77
- * Unique context ID for the job
78
- */
79
- contextId: string;
80
- /**
81
- * Current status of the job
82
- */
83
- status: 'New' | 'Started' | 'Completed' | 'Aborted' | 'Failed';
84
- /**
85
- * Detailed status information, if available
86
- */
87
- statusDetail?: string | null;
88
- /**
89
- * Total size of the data being prepared
90
- */
91
- size: number;
92
- /**
93
- * The amount of data processed so far
94
- */
95
- completed: number;
96
- /**
97
- * Timestamp for when the preparation started
98
- */
99
- startTime?: string | null;
100
- /**
101
- * Timestamp for when the preparation finished
102
- */
103
- endTime?: string | null;
104
- };
105
- /**
106
- * Response returned by async endpoints (`202 Accepted`). The `jobId` is deterministic for the
107
- * same input parameters — repeated calls with identical params return the same id.
108
- *
109
- */
110
- export type AcceptedJob = {
111
- /**
112
- * Unique job identifier; use this to poll for completion.
113
- */
114
- jobId: string;
115
- };
116
- /**
117
- * Backtest job result.
118
- */
119
- export type BacktestJobResult = {
120
- results: ResultMap;
121
- state: JobState;
122
- };
123
- /**
124
- * Execution result map. Always includes core fields (hostName, iops, strategyId, instrument). Yield metrics (pnlTotal, totalTrades, winRate, etc.) are present when the strategy emitted at least one trade. When signal storage is enabled, includes signal fields described below.
125
- */
126
- export type ResultMap = {
127
- /**
128
- * Hostname of the worker node that executed the strategy
129
- */
130
- hostName?: string;
131
- /**
132
- * Instrument operations per second throughput during execution
133
- */
134
- iops?: number;
135
- /**
136
- * Redis key of the compiled strategy used for execution. Format: strategy:{userId}:ticker:{compilationId}
137
- */
138
- strategyId: string;
139
- /**
140
- * The instrument (currency pair) that was backtested
141
- */
142
- instrument: string;
143
- /**
144
- * Total profit and loss in the output currency
145
- */
146
- pnlTotal?: number;
147
- /**
148
- * Total number of trades executed by the strategy
149
- */
150
- totalTrades?: number;
151
- /**
152
- * Percentage of profitable trades (0-100)
153
- */
154
- winRate?: number;
155
- /**
156
- * Risk-adjusted return ratio (mean return / standard deviation of returns)
157
- */
158
- sharpeRatio?: number;
159
- /**
160
- * Downside risk-adjusted return ratio (mean return / downside deviation)
161
- */
162
- sortinoRatio?: number;
163
- /**
164
- * Compound Annual Growth Rate
165
- */
166
- cagr?: number;
167
- /**
168
- * Maximum absolute drawdown in the output currency
169
- */
170
- maxDrawdown?: number;
171
- /**
172
- * Maximum percentage drawdown from peak equity
173
- */
174
- maxDrawdownPercent?: number;
175
- /**
176
- * Number of signals emitted during strategy execution
177
- */
178
- signalCount?: number;
179
- /**
180
- * Storage key for the signal Parquet file. Format: {userId}/exec/{exchange}/{jobId}
181
- */
182
- signalsId?: string;
183
- /**
184
- * Public HTTPS URL to the Parquet file. Computed at setup time from publicBaseUrl + signalsId + .parquet. Available even before upload completes.
185
- */
186
- signalsUrl?: string;
187
- /**
188
- * Upload status. Done = file uploaded to R2. Failed = upload error (see signalsUploadReason). Skipped = no signals emitted or storage not configured.
189
- */
190
- signalsUpload?: 'Done' | 'Failed' | 'Skipped';
191
- /**
192
- * ISO 8601 timestamp of when the upload completed. Only present when signalsUpload is Done.
193
- */
194
- signalsUploadedAt?: string;
195
- /**
196
- * Human-readable reason when signalsUpload is Failed or Skipped.
197
- */
198
- signalsUploadReason?: string;
199
- };
200
- /**
201
- * Unique identifier for a compiled strategy
202
- */
203
- export type StrategyId = string;
204
- export type GetExchangesData = {
205
- body?: never;
206
- path?: never;
207
- query?: never;
208
- url: '/exchanges';
209
- };
210
- export type GetExchangesResponses = {
211
- /**
212
- * A JSON array of Exchanges
213
- */
214
- 200: Array<Exchange>;
215
- };
216
- export type GetExchangesResponse = GetExchangesResponses[keyof GetExchangesResponses];
217
- export type GetInstrumentsData = {
218
- body?: never;
219
- path: {
220
- /**
221
- * ID of the exchange to retrieve instruments for
222
- */
223
- exchangeId: string;
224
- };
225
- query?: never;
226
- url: '/exchange/{exchangeId}/instruments';
227
- };
228
- export type GetInstrumentsErrors = {
229
- /**
230
- * Exchange not found or instrument catalog not available
231
- */
232
- 404: ResponseError;
233
- };
234
- export type GetInstrumentsError = GetInstrumentsErrors[keyof GetInstrumentsErrors];
235
- export type GetInstrumentsResponses = {
236
- /**
237
- * A JSON array of Instrument details with data availability
238
- */
239
- 200: Array<InstrumentDetail>;
240
- };
241
- export type GetInstrumentsResponse = GetInstrumentsResponses[keyof GetInstrumentsResponses];
242
- export type PostStrategyData = {
243
- /**
244
- * Raw strategy Java source code
245
- */
246
- body: string;
247
- headers?: {
248
- /**
249
- * When `true`, compile asynchronously and return `202` with a `jobId`.
250
- */
251
- 'X-Compile-Async'?: boolean;
252
- };
253
- path?: never;
254
- query?: never;
255
- url: '/strategy';
256
- };
257
- export type PostStrategyErrors = {
258
- /**
259
- * Invalid strategy (compilation error)
260
- */
261
- 400: ResponseError;
262
- };
263
- export type PostStrategyError = PostStrategyErrors[keyof PostStrategyErrors];
264
- export type PostStrategyResponses = {
265
- /**
266
- * Strategy compiled successfully (sync mode)
267
- */
268
- 200: {
269
- strategyId: StrategyId;
270
- };
271
- /**
272
- * Compile task accepted (async mode — set `X-Compile-Async: true`)
273
- */
274
- 202: AcceptedJob;
275
- };
276
- export type PostStrategyResponse = PostStrategyResponses[keyof PostStrategyResponses];
277
- export type GetStrategyStatusData = {
278
- body?: never;
279
- path: {
280
- /**
281
- * The id returned by `POST /strategy` (sync) or the `jobId` returned in async mode
282
- */
283
- strategyId: string;
284
- };
285
- query?: never;
286
- url: '/strategy/{strategyId}';
287
- };
288
- export type GetStrategyStatusErrors = {
289
- /**
290
- * Strategy compile job not found
291
- */
292
- 404: ResponseError;
293
- };
294
- export type GetStrategyStatusError = GetStrategyStatusErrors[keyof GetStrategyStatusErrors];
295
- export type GetStrategyStatusResponses = {
296
- /**
297
- * Strategy compile state
298
- */
299
- 200: {
300
- /**
301
- * Compile job id (only set in async mode)
302
- */
303
- jobId?: string;
304
- status: 'New' | 'Started' | 'Completed' | 'Aborted' | 'Failed';
305
- strategyId?: StrategyId;
306
- /**
307
- * Compilation error messages when `status` is `Failed`
308
- */
309
- statusDetail?: string | null;
310
- };
311
- };
312
- export type GetStrategyStatusResponse = GetStrategyStatusResponses[keyof GetStrategyStatusResponses];
313
- export type PrepareBacktestingData = {
314
- /**
315
- * The required data to prepare a backtesting
316
- */
317
- body: {
318
- instrument: Instrument;
319
- /**
320
- * Start date for the preparation process. Supports the following formats:
321
- * - ISO-8601 (e.g. 2024-12-14T23:59:59Z)
322
- * - ISO DATE (e.g. 2024-12-14)
323
- * - BASIC ISO DATE (e.g., 20241214)
324
- *
325
- */
326
- from: string;
327
- /**
328
- * End date for the preparation process. Supports the following formats:
329
- * - ISO-8601 (e.g. 2024-12-14T23:59:59Z)
330
- * - ISO DATE (e.g. 2024-12-14)
331
- * - BASIC ISO DATE (e.g., 20241214)
332
- *
333
- */
334
- to: string;
335
- };
336
- path: {
337
- /**
338
- * ID of the exchange to prepare the backtesting for
339
- */
340
- exchangeId: string;
341
- /**
342
- * The type of data source to prepare from
343
- */
344
- type: DataSourceType;
345
- };
346
- query?: never;
347
- url: '/backtest/{exchangeId}/{type}/prepare';
348
- };
349
- export type PrepareBacktestingErrors = {
350
- /**
351
- * Invalid request or parameters. Also returned when `from` is older than the configured
352
- * lookback window or `to` is in the future.
353
- *
354
- */
355
- 400: ResponseError;
356
- /**
357
- * Exchange or data source type not found
358
- */
359
- 404: ResponseError;
360
- /**
361
- * Rate limited. Returned when the global queue exceeds capacity or the user has too many
362
- * active backtests.
363
- *
364
- */
365
- 429: ResponseError;
366
- };
367
- export type PrepareBacktestingError = PrepareBacktestingErrors[keyof PrepareBacktestingErrors];
368
- export type PrepareBacktestingResponses = {
369
- /**
370
- * Prepare task accepted (queued for processing)
371
- */
372
- 202: AcceptedJob;
373
- };
374
- export type PrepareBacktestingResponse = PrepareBacktestingResponses[keyof PrepareBacktestingResponses];
375
- export type GetPreparationStatusData = {
376
- body?: never;
377
- path: {
378
- /**
379
- * ID of the exchange for the backtesting process
380
- */
381
- exchangeId: string;
382
- /**
383
- * The type of data source to prepare from
384
- */
385
- type: DataSourceType;
386
- /**
387
- * Job ID returned by `POST /prepare`
388
- */
389
- jobId: string;
390
- };
391
- query?: never;
392
- url: '/backtest/{exchangeId}/{type}/prepare/{jobId}';
393
- };
394
- export type GetPreparationStatusErrors = {
395
- /**
396
- * Invalid request or parameters
397
- */
398
- 400: ResponseError;
399
- /**
400
- * Prepare job not found or expired
401
- */
402
- 404: ResponseError;
403
- };
404
- export type GetPreparationStatusError = GetPreparationStatusErrors[keyof GetPreparationStatusErrors];
405
- export type GetPreparationStatusResponses = {
406
- /**
407
- * Current prepare job state
408
- */
409
- 200: JobState;
410
- };
411
- export type GetPreparationStatusResponse = GetPreparationStatusResponses[keyof GetPreparationStatusResponses];
412
- export type ExecuteBacktestingData = {
413
- /**
414
- * Execute task parameters
415
- */
416
- body: {
417
- /**
418
- * Job ID returned by `POST /prepare` (must be in `Completed` state)
419
- */
420
- prepareJobId: string;
421
- strategyId: StrategyId;
422
- /**
423
- * When true, the worker uploads emitted signals to object storage and the
424
- * response includes `signalsUrl` / `signalsId` fields. Defaults to false.
425
- *
426
- */
427
- storeSignals?: boolean;
428
- };
429
- path: {
430
- /**
431
- * ID of the exchange for the backtesting process
432
- */
433
- exchangeId: string;
434
- /**
435
- * The type of data source to execute from
436
- */
437
- type: DataSourceType;
438
- };
439
- query?: never;
440
- url: '/backtest/{exchangeId}/{type}/execute';
441
- };
442
- export type ExecuteBacktestingErrors = {
443
- /**
444
- * Invalid request or parameters
445
- */
446
- 400: ResponseError;
447
- /**
448
- * Prepare job not found or expired
449
- */
450
- 404: ResponseError;
451
- /**
452
- * Rate limited (global queue at capacity or per-user limit reached)
453
- */
454
- 429: ResponseError;
455
- };
456
- export type ExecuteBacktestingError = ExecuteBacktestingErrors[keyof ExecuteBacktestingErrors];
457
- export type ExecuteBacktestingResponses = {
458
- /**
459
- * Execute task accepted (queued for processing)
460
- */
461
- 202: AcceptedJob;
462
- };
463
- export type ExecuteBacktestingResponse = ExecuteBacktestingResponses[keyof ExecuteBacktestingResponses];
464
- export type CancelExecutionData = {
465
- body?: never;
466
- path: {
467
- exchangeId: string;
468
- type: DataSourceType;
469
- /**
470
- * Job ID returned by `POST /execute`
471
- */
472
- jobId: string;
473
- };
474
- query?: never;
475
- url: '/backtest/{exchangeId}/{type}/execute/{jobId}';
476
- };
477
- export type CancelExecutionErrors = {
478
- /**
479
- * Execution not found
480
- */
481
- 404: ResponseError;
482
- };
483
- export type CancelExecutionError = CancelExecutionErrors[keyof CancelExecutionErrors];
484
- export type CancelExecutionResponses = {
485
- /**
486
- * Cancellation request accepted
487
- */
488
- 200: {
489
- status?: 'cancelling';
490
- jobId?: string;
491
- };
492
- };
493
- export type CancelExecutionResponse = CancelExecutionResponses[keyof CancelExecutionResponses];
494
- export type GetExecutionResultData = {
495
- body?: never;
496
- path: {
497
- /**
498
- * ID of the exchange for the backtesting process
499
- */
500
- exchangeId: string;
501
- /**
502
- * The type of data source to execute from
503
- */
504
- type: DataSourceType;
505
- /**
506
- * Job ID returned by `POST /execute`
507
- */
508
- jobId: string;
509
- };
510
- query?: never;
511
- url: '/backtest/{exchangeId}/{type}/execute/{jobId}';
512
- };
513
- export type GetExecutionResultErrors = {
514
- /**
515
- * Invalid request or parameters
516
- */
517
- 400: ResponseError;
518
- /**
519
- * Execution job not found
520
- */
521
- 404: ResponseError;
522
- };
523
- export type GetExecutionResultError = GetExecutionResultErrors[keyof GetExecutionResultErrors];
524
- export type GetExecutionResultResponses = {
525
- /**
526
- * Backtesting execution result
527
- */
528
- 200: BacktestJobResult;
529
- };
530
- export type GetExecutionResultResponse = GetExecutionResultResponses[keyof GetExecutionResultResponses];
531
- export type ClientOptions = {
532
- baseUrl: 'https://api.staging.qtsurfer.com/v1' | 'https://api.qtsurfer.com/v1' | (string & {});
533
- };
534
- //# sourceMappingURL=types.gen.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"types.gen.d.ts","sourceRoot":"","sources":["../../src/generated/types.gen.ts"],"names":[],"mappings":"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"}
@@ -1,3 +0,0 @@
1
- // This file is auto-generated by @hey-api/openapi-ts
2
- export {};
3
- //# sourceMappingURL=types.gen.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"types.gen.js","sourceRoot":"","sources":["../../src/generated/types.gen.ts"],"names":[],"mappings":"AAAA,qDAAqD"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAC;AAC5B,OAAO,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC"}