forked from waditu/czsc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 0.9.21 first commit * 0.9.21 first commit * 0.9.21 update * 0.9.21 新增信号分析 * 0.9.21 新增 CTAResearch 模块 * 0.9.21 update * 0.9.21 update * 0.9.21 update * add vscode settings * 0.9.21 update * 0.9.21 update * 0.9.21 update cmd * 0.9.21 优化代码格式 * 0.9.21 update * 0.9.21 fix test * 0.9.21 update * 0.9.21 update * 0.9.21 update * 0.9.21 更新琅盎共享的信号函数 * 0.9.21 update * 0.9.21 update coo_td_V221111 * 0.9.21 新增CCI基础策略 * update * update * 0.9.21 update * 0.9.21 fix bug: 合并K线后,会出现 high_ubi 大于 bi.high,这是正常的 * 0.9.21 update * 0.9.21 update * 0.9.21 优化价值发现算法 * fix divide by 0 * 0.9.21 新增阿里云OSS操作类 * update * update * update * update
- Loading branch information
Showing
41 changed files
with
2,368 additions
and
570 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
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"python.testing.pytestArgs": [ | ||
"test" | ||
], | ||
"python.testing.unittestEnabled": false, | ||
"python.testing.pytestEnabled": true, | ||
"python.formatting.provider": "none", | ||
"python.formatting.autopep8Args": [ | ||
"--max-line-length", | ||
"120" | ||
], | ||
"[python]": { | ||
"editor.defaultFormatter": "ms-python.black-formatter" | ||
}, | ||
"python.formatting.blackArgs": [ | ||
"--line-length", | ||
"120" | ||
], | ||
"typescript.locale": "zh-CN", | ||
} |
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 |
---|---|---|
|
@@ -21,13 +21,14 @@ | |
from czsc.utils import get_sub_elements, get_py_namespace, freqs_sorted, x_round, import_by_name, create_grid_params | ||
from czsc.utils import cal_trade_price, cross_sectional_ic, update_bbars, update_tbars, update_nbars | ||
from czsc.utils import CrossSectionalPerformance | ||
from czsc.sensors import holds_concepts_effect, SignalsPerformance, CTAResearch | ||
from czsc.sensors import holds_concepts_effect, CTAResearch | ||
from czsc.utils.signal_analyzer import SignalAnalyzer, SignalPerformance | ||
|
||
|
||
__version__ = "0.9.20" | ||
__version__ = "0.9.21" | ||
__author__ = "zengbin93" | ||
__email__ = "[email protected]" | ||
__date__ = "20230524" | ||
__date__ = "20230601" | ||
|
||
|
||
def welcome(): | ||
|
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
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
Oops, something went wrong.