-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi-docs.yaml
More file actions
499 lines (467 loc) · 10.3 KB
/
api-docs.yaml
File metadata and controls
499 lines (467 loc) · 10.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
openapi: 3.0.3
info:
title: OKX Quant Trading API
description: OKX 量化交易系统 API 文档
version: 1.0.0
servers:
- url: http://localhost:8080
description: 本地开发服务器
paths:
/health:
get:
summary: 健康检查
responses:
'200':
description: 服务正常运行
content:
application/json:
schema:
type: object
properties:
status:
type: string
example: ok
/ready:
get:
summary: 就绪检查
responses:
'200':
description: 服务已就绪
'503':
description: 服务未就绪
/api/status:
get:
summary: 获取系统状态
responses:
'200':
description: 系统状态
content:
application/json:
schema:
$ref: '#/components/schemas/SystemStatus'
/api/strategies:
get:
summary: 获取策略列表
responses:
'200':
description: 策略列表
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/StrategyStatus'
/api/positions:
get:
summary: 获取持仓列表
responses:
'200':
description: 持仓列表
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/PositionInfo'
/api/orders:
get:
summary: 获取订单列表
responses:
'200':
description: 订单列表
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/OrderInfo'
/api/signals:
get:
summary: 获取信号列表
responses:
'200':
description: 信号列表
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/SignalInfo'
/api/strategy/start/{name}:
post:
summary: 启动策略
parameters:
- in: path
name: name
required: true
schema:
type: string
responses:
'200':
description: 策略已启动
/api/strategy/stop/{name}:
post:
summary: 停止策略
parameters:
- in: path
name: name
required: true
schema:
type: string
responses:
'200':
description: 策略已停止
/api/order/create:
post:
summary: 创建订单
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/CreateOrderRequest'
responses:
'200':
description: 订单已创建
/api/position/close/{symbol}:
post:
summary: 平仓
parameters:
- in: path
name: symbol
required: true
schema:
type: string
responses:
'200':
description: 平仓成功
/api/manual/order:
post:
summary: 创建手动交易订单
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/CreateManualOrderRequest'
responses:
'200':
description: 订单已创建
/api/manual/order/{order_id}:
delete:
summary: 撤销手动交易订单
parameters:
- in: path
name: order_id
required: true
schema:
type: string
responses:
'200':
description: 订单已撤销
/api/manual/orders:
get:
summary: 获取手动交易订单列表
parameters:
- in: query
name: symbol
schema:
type: string
- in: query
name: limit
schema:
type: integer
- in: query
name: offset
schema:
type: integer
responses:
'200':
description: 订单列表
/api/manual/position/close:
post:
summary: 手动平仓
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/ClosePositionRequest'
responses:
'200':
description: 平仓成功
/api/manual/position/tp-sl:
post:
summary: 设置止盈止损
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/SetTpSlRequest'
responses:
'200':
description: 设置成功
/api/llm/analyze/trade:
post:
summary: 交易分析
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/AnalyzeTradeRequest'
responses:
'200':
description: 分析结果
content:
application/json:
schema:
$ref: '#/components/schemas/AnalysisResult'
/api/llm/analyze/positions:
get:
summary: 持仓分析
responses:
'200':
description: 分析结果
content:
application/json:
schema:
$ref: '#/components/schemas/AnalysisResult'
/api/llm/analyze/market:
post:
summary: 市场分析
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/AnalyzeMarketRequest'
responses:
'200':
description: 分析结果
content:
application/json:
schema:
$ref: '#/components/schemas/AnalysisResult'
/api/llm/history:
get:
summary: 获取分析历史
parameters:
- in: query
name: limit
schema:
type: integer
responses:
'200':
description: 分析历史列表
components:
schemas:
SystemStatus:
type: object
properties:
running:
type: boolean
exchange_connected:
type: boolean
start_time:
type: string
format: date-time
uptime:
type: string
account_balance:
type: number
total_pnl:
type: number
daily_pnl:
type: number
win_rate:
type: number
total_trades:
type: integer
StrategyStatus:
type: object
properties:
name:
type: string
enabled:
type: boolean
running:
type: boolean
pnl:
type: number
win_rate:
type: number
trades:
type: integer
last_signal:
type: string
last_update:
type: string
format: date-time
PositionInfo:
type: object
properties:
symbol:
type: string
side:
type: string
size:
type: number
entry_price:
type: number
mark_price:
type: number
unrealized_pnl:
type: number
leverage:
type: integer
open_time:
type: string
format: date-time
strategy:
type: string
OrderInfo:
type: object
properties:
order_id:
type: string
symbol:
type: string
side:
type: string
type:
type: string
price:
type: number
size:
type: number
filled_size:
type: number
status:
type: string
create_time:
type: string
format: date-time
strategy:
type: string
SignalInfo:
type: object
properties:
id:
type: string
strategy:
type: string
symbol:
type: string
side:
type: string
price:
type: number
size:
type: number
confidence:
type: number
reason:
type: string
time:
type: string
format: date-time
executed:
type: boolean
CreateOrderRequest:
type: object
required:
- symbol
- side
- type
- size
properties:
symbol:
type: string
side:
type: string
type:
type: string
price:
type: number
size:
type: number
CreateManualOrderRequest:
type: object
required:
- symbol
- side
- size
properties:
symbol:
type: string
side:
type: string
type:
type: string
price:
type: number
size:
type: number
leverage:
type: integer
take_profit:
type: number
stop_loss:
type: number
ai_analysis_id:
type: integer
ai_analysis_summary:
type: string
ClosePositionRequest:
type: object
required:
- symbol
properties:
symbol:
type: string
size:
type: number
SetTpSlRequest:
type: object
required:
- symbol
properties:
symbol:
type: string
take_profit:
type: number
stop_loss:
type: number
AnalyzeTradeRequest:
type: object
required:
- symbol
- side
- size
properties:
symbol:
type: string
side:
type: string
size:
type: number
price:
type: number
AnalyzeMarketRequest:
type: object
required:
- symbol
properties:
symbol:
type: string
AnalysisResult:
type: object
properties:
summary:
type: string
analysis:
type: string
risk_level:
type: string