123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- USE mfdb;
- -- DROP TABLE fund_risk_stats_dolphin;
- CREATE TABLE `fund_risk_stats_dolphin` (
- `fund_id` varchar(10) NOT NULL COMMENT '基金id',
- `end_date` varchar(7) NOT NULL COMMENT '截至日期',
- `stddev_6m` decimal(22,6) DEFAULT NULL,
- `downsidedev_6m` decimal(22,6) DEFAULT NULL,
- `alpha_6m` decimal(22,6) DEFAULT NULL,
- `winrate_6m` decimal(22,6) DEFAULT NULL,
- `beta_6m` decimal(22,6) DEFAULT NULL,
- `skewness_6m` decimal(22,6) DEFAULT NULL,
- `kurtosis_6m` decimal(22,6) DEFAULT NULL,
- `worstmonth_6m` decimal(22,6) DEFAULT NULL,
- `maxdrawdown_6m` decimal(22,6) DEFAULT NULL,
- `stddev_1y` decimal(22,6) DEFAULT NULL,
- `downsidedev_1y` decimal(22,6) DEFAULT NULL,
- `alpha_1y` decimal(22,6) DEFAULT NULL,
- `winrate_1y` decimal(22,6) DEFAULT NULL,
- `beta_1y` decimal(22,6) DEFAULT NULL,
- `skewness_1y` decimal(22,6) DEFAULT NULL,
- `kurtosis_1y` decimal(22,6) DEFAULT NULL,
- `worstmonth_1y` decimal(22,6) DEFAULT NULL,
- `maxdrawdown_1y` decimal(22,6) DEFAULT NULL,
- `stddev_2y` decimal(22,6) DEFAULT NULL,
- `downsidedev_2y` decimal(22,6) DEFAULT NULL,
- `alpha_2y` decimal(22,6) DEFAULT NULL,
- `winrate_2y` decimal(22,6) DEFAULT NULL,
- `beta_2y` decimal(22,6) DEFAULT NULL,
- `skewness_2y` decimal(22,6) DEFAULT NULL,
- `kurtosis_2y` decimal(22,6) DEFAULT NULL,
- `worstmonth_2y` decimal(22,6) DEFAULT NULL,
- `maxdrawdown_2y` decimal(22,6) DEFAULT NULL,
- `stddev_3y` decimal(22,6) DEFAULT NULL,
- `downsidedev_3y` decimal(22,6) DEFAULT NULL,
- `alpha_3y` decimal(22,6) DEFAULT NULL,
- `winrate_3y` decimal(22,6) DEFAULT NULL,
- `beta_3y` decimal(22,6) DEFAULT NULL,
- `skewness_3y` decimal(22,6) DEFAULT NULL,
- `kurtosis_3y` decimal(22,6) DEFAULT NULL,
- `worstmonth_3y` decimal(22,6) DEFAULT NULL,
- `maxdrawdown_3y` decimal(22,6) DEFAULT NULL,
- `stddev_4y` decimal(22,6) DEFAULT NULL,
- `downsidedev_4y` decimal(22,6) DEFAULT NULL,
- `alpha_4y` decimal(22,6) DEFAULT NULL,
- `winrate_4y` decimal(22,6) DEFAULT NULL,
- `beta_4y` decimal(22,6) DEFAULT NULL,
- `skewness_4y` decimal(22,6) DEFAULT NULL,
- `kurtosis_4y` decimal(22,6) DEFAULT NULL,
- `worstmonth_4y` decimal(22,6) DEFAULT NULL,
- `maxdrawdown_4y` decimal(22,6) DEFAULT NULL,
- `stddev_5y` decimal(22,6) DEFAULT NULL,
- `downsidedev_5y` decimal(22,6) DEFAULT NULL,
- `alpha_5y` decimal(22,6) DEFAULT NULL,
- `winrate_5y` decimal(22,6) DEFAULT NULL,
- `beta_5y` decimal(22,6) DEFAULT NULL,
- `skewness_5y` decimal(22,6) DEFAULT NULL,
- `kurtosis_5y` decimal(22,6) DEFAULT NULL,
- `worstmonth_5y` decimal(22,6) DEFAULT NULL,
- `maxdrawdown_5y` decimal(22,6) DEFAULT NULL,
- `stddev_10y` decimal(22,6) DEFAULT NULL,
- `downsidedev_10y` decimal(22,6) DEFAULT NULL,
- `alpha_10y` decimal(22,6) DEFAULT NULL,
- `winrate_10y` decimal(22,6) DEFAULT NULL,
- `beta_10y` decimal(22,6) DEFAULT NULL,
- `skewness_10y` decimal(22,6) DEFAULT NULL,
- `kurtosis_10y` decimal(22,6) DEFAULT NULL,
- `worstmonth_10y` decimal(22,6) DEFAULT NULL,
- `maxdrawdown_10y` decimal(22,6) DEFAULT NULL,
- `stddev_ytd` decimal(22,6) DEFAULT NULL,
- `downsidedev_ytd` decimal(22,6) DEFAULT NULL,
- `alpha_ytd` decimal(22,6) DEFAULT NULL,
- `winrate_ytd` decimal(22,6) DEFAULT NULL,
- `beta_ytd` decimal(22,6) DEFAULT NULL,
- `skewness_ytd` decimal(22,6) DEFAULT NULL,
- `kurtosis_ytd` decimal(22,6) DEFAULT NULL,
- `worstmonth_ytd` decimal(22,6) DEFAULT NULL,
- `maxdrawdown_ytd` decimal(22,6) DEFAULT NULL,
- `stddev_incep` decimal(22,6) DEFAULT NULL,
- `downsidedev_incep` decimal(22,6) DEFAULT NULL,
- `alpha_incep` decimal(22,6) DEFAULT NULL,
- `winrate_incep` decimal(22,6) DEFAULT NULL,
- `beta_incep` decimal(22,6) DEFAULT NULL,
- `skewness_incep` decimal(22,6) DEFAULT NULL,
- `kurtosis_incep` decimal(22,6) DEFAULT NULL,
- `worstmonth_incep` decimal(22,6) DEFAULT NULL,
- `maxdrawdown_incep` decimal(22,6) DEFAULT NULL,
- `creatorid` int DEFAULT NULL COMMENT '创建者Id,默认第一次创建者名称,创建后不变更',
- `createtime` datetime DEFAULT NULL COMMENT '创建时间,默认第一次创建的getdate()时间',
- `updaterid` int DEFAULT NULL COMMENT '修改者Id;第一次创建时与Creator值相同,修改时与修改人值相同',
- `updatetime` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '修改时间;第一次创建时与CreatTime值相同,修改时与修改时间相同',
- `isvalid` tinyint NOT NULL DEFAULT '1' COMMENT '记录的有效性;1-有效;0-无效;',
- PRIMARY KEY (`fund_id`,`end_date`),
- KEY (`end_date`),
- KEY (`updatetime`)
- ) COMMENT='DolphinDB写回的基金历史风险指标表'
|