-
Notifications
You must be signed in to change notification settings - Fork 984
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 0.9.14 start coding * 0.9.14 update action * 0.9.14 update * 0.9.14 update * 0.9.14 更新一批信号函数 * 0.9.14 更新一批信号函数 * 0.9.14 更新一批信号函数 * Xuming (#134) * 准备好czsc_qmt_checkpoint_xm.py,打算进行策略选择和开平仓显示开发 * 添加check.bat,调整height * 添加了一个自己的指标,变成了4 row * 实现了策略买卖点的显示 * sdt调整 * sdt调整 * 增加收益分析,修正bs_df为空的bug * 增加收益分析,修正bs_df为空的bug * 去掉了转parquet * margin调整 * 支持了股票池和回测模式选择 * 支持了股票池和回测模式选择 * 支持了股票池和回测模式选择 * Delete check.bat * Delete tcheck.bat --------- Co-authored-by: zengbin93 <[email protected]> * 0.9.14 fix bug * 0.9.14 新增收益计算函数 * 0.9.14 优化绘图工具 * 0.9.14 update * 0.9.14 新增信号解析模块 * 0.9.14 新增信号解析模块 * 0.9.14 新增截面IC计算函数 * 0.9.14 优化 Position 对象 * 0.9.14 优化策略模板 * 0.9.14 update * 0.9.14 update * 0.9.14 update * 0.9.14 update * 0.9.14 update * 0.9.14 新增 RBreaker 信号 * 0.9.14 新增 unique signals 属性 * 0.9.14 新增 unique signals 属性 * 0.9.14 优化 freqs 验证方法 * 0.9.14 update * 0.9.14 update * 0.9.14 优化 Event * 0.9.14 update * 0.9.14 update * 0.9.14 update * 0.9.14 update * 0.9.14 支持不写 get_signals 直接创建策略 * 0.9.14 支持不写 get_signals 直接创建策略 * 0.9.14 update * 0.9.14 update --------- Co-authored-by: ming-mingxu <[email protected]>
- Loading branch information
1 parent
6d9d861
commit 86c6370
Showing
40 changed files
with
2,312 additions
and
1,338 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 |
---|---|---|
|
@@ -16,21 +16,21 @@ | |
from czsc.utils.cache import home_path, get_dir_size, empty_cache_path | ||
from czsc.traders import CzscTrader, CzscSignals, generate_czsc_signals, check_signals_acc, get_unique_signals | ||
from czsc.traders import PairsPerformance, combine_holds_and_pairs, combine_dates_and_pairs, stock_holds_performance | ||
from czsc.traders import DummyBacktest | ||
from czsc.traders import DummyBacktest, SignalsParser, get_signals_by_conf, get_signals_config, get_signals_freqs | ||
from czsc.strategies import CzscStrategyBase | ||
from czsc.utils import KlineChart, BarGenerator, resample_bars, dill_dump, dill_load, read_json, save_json | ||
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 | ||
from czsc.utils import cal_trade_price, cross_sectional_ic | ||
from czsc.sensors import holds_concepts_effect, StocksDaySensor, ThsConceptsSensor, SignalsPerformance | ||
|
||
|
||
__version__ = "0.9.13" | ||
__version__ = "0.9.14" | ||
__author__ = "zengbin93" | ||
__email__ = "[email protected]" | ||
__date__ = "20230314" | ||
__date__ = "20230323" | ||
|
||
|
||
if envs.get_welcome(): | ||
def welcome(): | ||
print(f"欢迎使用CZSC!当前版本标识为 {__version__}@{__date__}\n") | ||
aphorism.print_one() | ||
|
||
|
@@ -40,5 +40,9 @@ | |
f"czsc_bi_change_th = {envs.get_bi_change_th()}") | ||
|
||
|
||
if envs.get_welcome(): | ||
welcome() | ||
|
||
|
||
if get_dir_size(home_path) > pow(1024, 3) and envs.get_verbose(): | ||
print(f"{home_path} 目录缓存超过1GB,请适当清理。调用 czsc.empty_cache_path 可以直接清空缓存") |
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.