-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathconfig_stock.json.example
More file actions
55 lines (54 loc) · 1.22 KB
/
config_stock.json.example
File metadata and controls
55 lines (54 loc) · 1.22 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
{
"tdx_api_url": "http://localhost:8181",
"ai_config": {
"provider": "deepseek",
"deepseek_key": "sk-your-deepseek-api-key",
"qwen_key": "",
"custom_api_url": "",
"custom_api_key": "",
"custom_model_name": ""
},
"stocks": [
{
"code": "000001",
"name": "平安银行",
"enabled": true,
"scan_interval_minutes": 5,
"min_confidence": 70
},
{
"code": "600519",
"name": "贵州茅台",
"enabled": true,
"scan_interval_minutes": 5,
"min_confidence": 70
},
{
"code": "000858",
"name": "五粮液",
"enabled": false,
"scan_interval_minutes": 5,
"min_confidence": 70
}
],
"notification": {
"enabled": true,
"dingtalk": {
"enabled": true,
"webhook_url": "https://oapi.dingtalk.com/robot/send?access_token=YOUR_TOKEN",
"secret": ""
},
"feishu": {
"enabled": true,
"webhook_url": "https://open.feishu.cn/open-apis/bot/v2/hook/YOUR_TOKEN",
"secret": ""
}
},
"trading_time": {
"enable_check": true,
"trading_hours": ["09:30-11:30", "13:00-15:00"],
"timezone": "Asia/Shanghai"
},
"api_server_port": 9090,
"log_dir": "stock_analysis_logs"
}