-
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.60 start coding * 0.9.60 新增备份网址 * 0.9.60 优化 ta 模块 * 0.9.60 新增 get_strategy_latest * 0.9.60 update * 0.9.60 新增 cal_yearly_days * 0.9.60 新增 tas_dif_layer_V241010 * 0.9.60 update * 0.9.60 update * 0.9.60 update * 0.9.60 新增两个工具函数 * 0.9.60 新增 bar_volatility_V241013 * 0.9.60 新增两个形态识别 * 0.9.60 新增 timeout_decorator 装饰器 * 0.9.60 新增 timeout_decorator 装饰器 * 0.9.60 新增 timeout_decorator 装饰器 * 0.9.60 新增 unify_weights 函数 * 0.9.60 新增 unify_weights 函数 * 0.9.60 新增 unify_weights 函数 * 0.9.60 fix bug * 0.9.60 新增 CHOP 波动指数 * 0.9.60 新增 CHOP 波动指数 * 0.9.60 fix numpy version * 0.9.60 fix numpy version * 0.9.60 新增两个统计指标 * 0.9.60 新增一批常用技术指标 * 0.9.60 新增一批常用技术指标 * 0.9.60 新增一批常用技术指标 * 0.9.60 fix minutes_split * 0.9.60 新增几个 EDA 工具函数 * 0.9.60 新增几个 EDA 工具函数
- Loading branch information
Showing
27 changed files
with
1,648 additions
and
173 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
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 |
---|---|---|
|
@@ -15,6 +15,7 @@ | |
from czsc.strategies import CzscStrategyBase, CzscJsonStrategy | ||
from czsc.sensors import holds_concepts_effect, CTAResearch, EventMatchSensor | ||
from czsc.sensors.feature import FixedNumberSelector | ||
from czsc.utils import ta | ||
from czsc.traders import ( | ||
CzscTrader, | ||
CzscSignals, | ||
|
@@ -40,11 +41,13 @@ | |
get_heartbeat_time, | ||
clear_strategy, | ||
get_strategy_weights, | ||
get_strategy_latest, | ||
|
||
OpensOptimize, | ||
ExitsOptimize, | ||
) | ||
from czsc.utils import ( | ||
timeout_decorator, | ||
mac_address, | ||
overlap, | ||
to_arrow, | ||
|
@@ -209,13 +212,19 @@ | |
monotonicity, | ||
min_max_limit, | ||
rolling_layers, | ||
cal_symbols_factor, | ||
weights_simple_ensemble, | ||
unify_weights, | ||
sma_long_bear, | ||
dif_long_bear, | ||
tsf_type, | ||
) | ||
|
||
|
||
__version__ = "0.9.59" | ||
__version__ = "0.9.60" | ||
__author__ = "zengbin93" | ||
__email__ = "[email protected]" | ||
__date__ = "20240901" | ||
__date__ = "20240918" | ||
|
||
|
||
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.