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.
* 09.49 start coding * 0.9.49 update_nxb 支持多品种 * 0.9.49 remove FeatureAnalyzeBase * 0.9.49 新增支撑压力位判断信号 * 0.9.49 新增 overlap 分析 * 0.9.49 新增信号函数 * 0.9.49 新增信号函数 * 0.9.49 新增 overlap 计算 * 0.9.49 新增 psi 计算 * 0.9.49 新增盈亏比判断相关的信号函数 * 0.9.49 优化 name hash 方法 * 0.9.49 新增加速走势的识别方法 * 0.9.49 update * 0.9.49 fix libxml2-dev libxslt1-dev * 0.9.49 fix libxml2-dev libxslt-dev python-dev * 0.9.49 fix libxml2-dev libxslt-dev * 0.9.49 lxml==4.9.2 * 0.9.49 lxml==4.9.2 * 0.9.49 新增保本单处理信号 * 0.9.49 新增事件因子的收益率特征分析 * 0.9.49 新增事件因子的收益率特征分析 * 0.9.49 确定了一批 deprecated 函数 * 0.9.49 新增K线质量检查函数 * 0.9.49 新增两个信号函数 * 0.9.49 新增 max_overlap * 0.9.49 新增止盈止损信号函数 * 0.9.49 新增交易单元分析组件 * 0.9.49 fix nh_daily * 0.9.49 tushare cache api example
- Loading branch information
Showing
37 changed files
with
2,625 additions
and
1,121 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 |
---|---|---|
|
@@ -14,7 +14,7 @@ | |
from czsc.objects import Freq, Operate, Direction, Signal, Factor, Event, RawBar, NewBar, Position, ZS | ||
from czsc.strategies import CzscStrategyBase, CzscJsonStrategy | ||
from czsc.sensors import holds_concepts_effect, CTAResearch, EventMatchSensor | ||
from czsc.sensors.feature import FixedNumberSelector, FeatureAnalyzeBase | ||
from czsc.sensors.feature import FixedNumberSelector | ||
from czsc.traders import ( | ||
CzscTrader, | ||
CzscSignals, | ||
|
@@ -45,6 +45,8 @@ | |
ExitsOptimize, | ||
) | ||
from czsc.utils import ( | ||
overlap, | ||
|
||
format_standard_kline, | ||
|
||
KlineChart, | ||
|
@@ -69,7 +71,7 @@ | |
cal_trade_price, | ||
update_bbars, | ||
update_tbars, | ||
update_nbars, | ||
update_nxb, | ||
risk_free_returns, | ||
resample_to_daily, | ||
|
||
|
@@ -85,6 +87,7 @@ | |
net_value_stats, | ||
subtract_fee, | ||
top_drawdowns, | ||
psi, | ||
|
||
home_path, | ||
DiskCache, | ||
|
@@ -132,6 +135,10 @@ | |
show_optuna_study, | ||
show_drawdowns, | ||
show_rolling_daily_performance, | ||
show_event_return, | ||
show_psi, | ||
show_strategies_symbol, | ||
show_strategies_dailys, | ||
) | ||
|
||
from czsc.utils.bi_info import ( | ||
|
@@ -160,10 +167,19 @@ | |
normalize_corr, | ||
) | ||
|
||
__version__ = "0.9.48" | ||
|
||
from czsc.utils.kline_quality import ( | ||
check_high_low, | ||
check_price_gap, | ||
check_abnormal_volume, | ||
check_zero_volume, | ||
) | ||
|
||
|
||
__version__ = "0.9.49" | ||
__author__ = "zengbin93" | ||
__email__ = "[email protected]" | ||
__date__ = "20240410" | ||
__date__ = "20240419" | ||
|
||
|
||
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
Oops, something went wrong.