-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
110 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,6 +45,7 @@ | |
cxt_bi_end_V230815, | ||
cxt_bi_stop_V230815, | ||
cxt_bi_trend_V230824, | ||
cxt_bi_trend_V230913, | ||
) | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
author: zengbin93 | ||
email: [email protected] | ||
create_dt: 2023/3/30 12:08 | ||
describe: | ||
describe: | ||
""" | ||
import os | ||
import sys | ||
|
@@ -44,8 +44,8 @@ | |
conf = sp.parse(signals_seq) | ||
parsed_name = {x['name'] for x in conf} | ||
print(f"total signal functions: {len(sp.sig_name_map)}; parsed: {len(parsed_name)}") | ||
# total signal functions: 182; parsed: 182 | ||
# total signal functions: 197; parsed: 197 | ||
|
||
# 测试信号配置生成信号 | ||
from czsc import generate_czsc_signals, get_signals_freqs, get_signals_config | ||
from test.test_analyze import read_1min | ||
|