You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AlphaGenerator/manual_prompt/2026/01/21/manual_prompt_2026012117233...

812 lines
113 KiB

管理层稳定性溢价
管理层稳定性高的公司治理更优,但市场可能高估其价值,导致稳定性低的股票被低估。因此,多空策略中,做多管理层稳定性高的股票(治理好,被低估),做空稳定性低的股票(治理差,被高估),可获得超额收益。
核心指标为高管离职率,需进行行业中性化处理;使用滚动12个月平均处理缺失值;引入ROE和股价波动率作为辅助验证变量。
*=========================================================================================*
输出格式:
输出必须是且仅是纯文本。
每一行是一个完整、独立、语法正确的WebSim表达式。
严禁任何形式的解释、编号、标点包裹(如引号)、Markdown格式或额外文本。
===================== !!! 重点(输出方式) !!! =====================
现在,请严格遵守以上所有规则,开始生成可立即在WebSim中运行的复合因子表达式。
不要自行假设, 你需要用到的操作符 和 数据集, 必须从我提供给你的里面查找, 并严格按照里面的使用方法进行组合
**输出格式**(一行一个表达式, 每个表达式中间需要添加一个空行, 只要表达式本身, 不需要赋值, 不要解释, 不需要序号, 也不要输出多余的东西):
表达式
表达式
表达式
...
表达式
=================================================================
重申:请确保所有表达式都使用WorldQuant WebSim平台函数,不要使用pandas、numpy或其他Python库函数。输出必须是一行有效的WQ表达式。
以下是我的账号有权限使用的操作符, 请严格按照操作符, 以及我提供的数据集, 进行生成,组合 50 个 alpha:
不要自行假设, 你需要用到的操作符 和 数据集, 必须从我提供给你的里面查找, 并严格按照里面的使用方法进行组合
=================================================================
**操作符汇总
**算术运算符 (Arithmetic):
abs(x) - 绝对值
add(x, y, filter=false) - 加法 (x + y)
densify(x) - 分组字段稠密化
divide(x, y) - 除法 (x / y)
inverse(x) - 倒数 (1/x)
log(x) - 自然对数
max(x, y, ..) - 最大值
min(x, y, ..) - 最小值
multiply(x, y, filter=false) - 乘法 (x * y)
power(x, y) - 幂运算 (x^y)
reverse(x) - 取反 (-x)
sign(x) - 符号函数
signed_power(x, y) - 保留符号的幂运算
sqrt(x) - 平方根
subtract(x, y, filter=false) - 减法 (x - y)
to_nan(x, value=0, reverse=false) - 值与NaN转换
**逻辑运算符 (Logical):
and(input1, input2) - 逻辑与
if_else(input1, input2, input3) - 条件判断
input1 < input2 - 小于比较
input1 <= input2 - 小于等于
input1 == input2 - 等于比较
input1 > input2 - 大于比较
input1 >= input2 - 大于等于
input1 != input2 - 不等于
is_nan(input) - 是否为NaN
not(x) - 逻辑非
or(input1, input2) - 逻辑或
**时间序列运算符 (Time Series):
days_from_last_change(x) - 上次变化天数
hump(x, hump=0.01) - 限制变化幅度
jump_decay(x, d, sensitivity=0.5, force=0.1) - 跳跃衰减
kth_element(x, d, k) - 第K个值
last_diff_value(x, d) - 最后一个不同值
ts_arg_max(x, d) - 最大值相对索引
ts_arg_min(x, d) - 最小值相对索引
ts_av_diff(x, d) - 与均值的差
ts_backfill(x, lookback=d, k=1, ignore="NAN") - 回填
ts_corr(x, y, d) - 时间序列相关性
ts_count_nans(x, d) - NaN计数
ts_covariance(y, x, d) - 协方差
ts_decay_linear(x, d, dense=false) - 线性衰减
ts_delay(x, d) - 延迟值
ts_delta(x, d) - 差值 (x - 延迟值)
ts_max(x, d) - 时间序列最大值
ts_mean(x, d) - 时间序列均值
ts_min(x, d) - 时间序列最小值
ts_product(x, d) - 时间序列乘积
ts_quantile(x, d, driver="gaussian") - 分位数
ts_rank(x, d, constant=0) - 时间序列排名
ts_regression(y, x, d, lag=0, rettype=0) - 回归分析
ts_scale(x, d, constant=0) - 时间序列缩放
ts_std_dev(x, d) - 时间序列标准差
ts_step(1) - 天数计数器
ts_sum(x, d) - 时间序列求和
ts_target_tvr_decay(x, lambda_min=0, lambda_max=1, target_tvr=0.1) - 目标换手率衰减
ts_target_tvr_delta_limit(x, y, lambda_min=0, lambda_max=1, target_tvr=0.1) - 目标换手率差值限制
ts_zscore(x, d) - 时间序列Z分数
**横截面运算符 (Cross Sectional):
normalize(x, useStd=false, limit=0.0) - 标准化
quantile(x, driver=gaussian, sigma=1.0) - 分位数转换
rank(x, rate=2) - 排名
scale(x, scale=1, longscale=1, shortscale=1) - 缩放
scale_down(x, constant=0) - 按比例缩放
vector_neut(x, y) - 向量中性化
winsorize(x, std=4) - 缩尾处理
zscore(x) - Z分数
**向量运算符 (Vector):
vec_avg(x) - 向量均值
vec_max(x) - 向量最大值
vec_min(x) - 向量最小值
vec_sum(x) - 向量求和
**变换运算符 (Transformational):
bucket(rank(x), range="0,1,0.1" or buckets="2,5,6,7,10") - 分桶
generate_stats(alpha) - 生成统计量
trade_when(x, y, z) - 条件交易
**分组运算符 (Group):
combo_a(alpha, nlength=250, mode='algo1') - 组合Alpha
group_backfill(x, group, d, std=4.0) - 分组回填
group_cartesian_product(g1, g2) - 笛卡尔积分组
group_max(x, group) - 分组最大值
group_mean(x, weight, group) - 分组均值
group_min(x, group) - 分组最小值
group_neutralize(x, group) - 分组中性化
group_rank(x, group) - 分组排名
group_scale(x, group) - 分组缩放
group_zscore(x, group) - 分组Z分数
**特殊运算符 (Special):
in - 包含判断
self_corr(input) - 自相关性
universe_size - 宇宙大小
**归约运算符 (Reduce):
reduce_avg(input, threshold=0) - 平均值归约
reduce_choose(input, nth, ignoreNan=true) - 选择归约
reduce_count(input, threshold) - 计数归约
reduce_ir(input) - IR归约
reduce_kurtosis(input) - 峰度归约
reduce_max(input) - 最大值归约
reduce_min(input) - 最小值归约
reduce_norm(input) - 范数归约
reduce_percentage(input, percentage=0.5) - 百分比归约
reduce_powersum(input, constant=2, precise=false) - 幂和归约
reduce_range(input) - 范围归约
reduce_skewness(input) - 偏度归约
reduce_stddev(input, threshold=0) - 标准差归约
reduce_sum(input) - 求和归约
以下是我的账号有权限使用的操作符, 请严格按照操作符, 进行生成,组合因子
========================= 操作符开始 =======================================
注意: Operator: 后面的是操作符(是可以使用的),
Description: 此字段后面的是操作符对应的描述或使用说明(禁止使用, 仅供参考), Description字段后面的内容是使用说明, 不是操作符
特别注意!!!! 必须按照操作符字段Operator的使用说明生成 alphaOperator: abs(x)
Description: Absolute value of x
Operator: add(x, y, filter = false)
Description: Add all inputs (at least 2 inputs required). If filter = true, filter all input NaN to 0 before adding
Operator: densify(x)
Description: Converts a grouping field of many buckets into lesser number of only available buckets so as to make working with grouping fields computationally efficient
Operator: divide(x, y)
Description: x / y
Operator: inverse(x)
Description: 1 / x
Operator: log(x)
Description: Natural logarithm. For example: Log(high/low) uses natural logarithm of high/low ratio as stock weights.
Operator: max(x, y, ..)
Description: Maximum value of all inputs. At least 2 inputs are required
Operator: min(x, y ..)
Description: Minimum value of all inputs. At least 2 inputs are required
Operator: multiply(x ,y, ... , filter=false)
Description: Multiply all inputs. At least 2 inputs are required. Filter sets the NaN values to 1
Operator: power(x, y)
Description: x ^ y
Operator: reverse(x)
Description: - x
Operator: sign(x)
Description: if input > 0, return 1; if input < 0, return -1; if input = 0, return 0; if input = NaN, return NaN;
Operator: signed_power(x, y)
Description: x raised to the power of y such that final result preserves sign of x
Operator: sqrt(x)
Description: Square root of x
Operator: subtract(x, y, filter=false)
Description: x-y. If filter = true, filter all input NaN to 0 before subtracting
Operator: and(input1, input2)
Description: Logical AND operator, returns true if both operands are true and returns false otherwise
Operator: if_else(input1, input2, input 3)
Description: If input1 is true then return input2 else return input3.
Operator: input1 < input2
Description: If input1 < input2 return true, else return false
Operator: input1 <= input2
Description: Returns true if input1 <= input2, return false otherwise
Operator: input1 == input2
Description: Returns true if both inputs are same and returns false otherwise
Operator: input1 > input2
Description: Logic comparison operators to compares two inputs
Operator: input1 >= input2
Description: Returns true if input1 >= input2, return false otherwise
Operator: input1!= input2
Description: Returns true if both inputs are NOT the same and returns false otherwise
Operator: is_nan(input)
Description: If (input == NaN) return 1 else return 0
Operator: not(x)
Description: Returns the logical negation of x. If x is true (1), it returns false (0), and if input is false (0), it returns true (1).
Operator: or(input1, input2)
Description: Logical OR operator returns true if either or both inputs are true and returns false otherwise
Operator: days_from_last_change(x)
Description: Amount of days since last change of x
Operator: hump(x, hump = 0.01)
Description: Limits amount and magnitude of changes in input (thus reducing turnover)
Operator: kth_element(x, d, k)
Description: Returns K-th value of input by looking through lookback days. This operator can be used to backfill missing data if k=1
Operator: last_diff_value(x, d)
Description: Returns last x value not equal to current x value from last d days
Operator: ts_arg_max(x, d)
Description: Returns the relative index of the max value in the time series for the past d days. If the current day has the max value for the past d days, it returns 0. If previous day has the max value for the past d days, it returns 1
Operator: ts_arg_min(x, d)
Description: Returns the relative index of the min value in the time series for the past d days; If the current day has the min value for the past d days, it returns 0; If previous day has the min value for the past d days, it returns 1.
Operator: ts_av_diff(x, d)
Description: Returns x - tsmean(x, d), but deals with NaNs carefully. That is NaNs are ignored during mean computation
Operator: ts_backfill(x,lookback = d, k=1, ignore="NAN")
Description: Backfill is the process of replacing the NAN or 0 values by a meaningful value (i.e., a first non-NaN value)
Operator: ts_corr(x, y, d)
Description: Returns correlation of x and y for the past d days
Operator: ts_count_nans(x ,d)
Description: Returns the number of NaN values in x for the past d days
Operator: ts_covariance(y, x, d)
Description: Returns covariance of y and x for the past d days
Operator: ts_decay_linear(x, d, dense = false)
Description: Returns the linear decay on x for the past d days. Dense parameter=false means operator works in sparse mode and we treat NaN as 0. In dense mode we do not.
Operator: ts_delay(x, d)
Description: Returns x value d days ago
Operator: ts_delta(x, d)
Description: Returns x - ts_delay(x, d)
Operator: ts_mean(x, d)
Description: Returns average value of x for the past d days.
Operator: ts_product(x, d)
Description: Returns product of x for the past d days
Operator: ts_quantile(x,d, driver="gaussian" )
Description: It calculates ts_rank and apply to its value an inverse cumulative density function from driver distribution. Possible values of driver (optional ) are "gaussian", "uniform", "cauchy" distribution where "gaussian" is the default.
Operator: ts_rank(x, d, constant = 0)
Description: Rank the values of x for each instrument over the past d days, then return the rank of the current value + constant. If not specified, by default, constant = 0.
Operator: ts_regression(y, x, d, lag = 0, rettype = 0)
Description: Returns various parameters related to regression function
Operator: ts_scale(x, d, constant = 0)
Description: Returns (x - ts_min(x, d)) / (ts_max(x, d) - ts_min(x, d)) + constant. This operator is similar to scale down operator but acts in time series space
Operator: ts_std_dev(x, d)
Description: Returns standard deviation of x for the past d days
Operator: ts_step(1)
Description: Returns days' counter
Operator: ts_sum(x, d)
Description: Sum values of x for the past d days.
Operator: ts_zscore(x, d)
Description: Z-score is a numerical measurement that describes a value's relationship to the mean of a group of values. Z-score is measured in terms of standard deviations from the mean: (x - tsmean(x,d)) / tsstddev(x,d). This operator may help reduce outliers and drawdown.
Operator: normalize(x, useStd = false, limit = 0.0)
Description: Calculates the mean value of all valid alpha values for a certain date, then subtracts that mean from each element
Operator: quantile(x, driver = gaussian, sigma = 1.0)
Description: Rank the raw vector, shift the ranked Alpha vector, apply distribution (gaussian, cauchy, uniform). If driver is uniform, it simply subtract each Alpha value with the mean of all Alpha values in the Alpha vector
Operator: rank(x, rate=2)
Description: Ranks the input among all the instruments and returns an equally distributed number between 0.0 and 1.0. For precise sort, use the rate as 0
Operator: scale(x, scale=1, longscale=1, shortscale=1)
Description: Scales input to booksize. We can also scale the long positions and short positions to separate scales by mentioning additional parameters to the operator
Operator: winsorize(x, std=4)
Description: Winsorizes x to make sure that all values in x are between the lower and upper limits, which are specified as multiple of std.
Operator: zscore(x)
Description: Z-score is a numerical measurement that describes a value's relationship to the mean of a group of values. Z-score is measured in terms of standard deviations from the mean
Operator: vec_avg(x)
Description: Taking mean of the vector field x
Operator: vec_sum(x)
Description: Sum of vector field x
Operator: bucket(rank(x), range="0, 1, 0.1" or buckets = "2,5,6,7,10")
Description: Convert float values into indexes for user-specified buckets. Bucket is useful for creating group values, which can be passed to GROUP as input
Operator: trade_when(x, y, z)
Description: Used in order to change Alpha values only under a specified condition and to hold Alpha values in other cases. It also allows to close Alpha positions (assign NaN values) under a specified condition
Operator: group_backfill(x, group, d, std = 4.0)
Description: If a certain value for a certain date and instrument is NaN, from the set of same group instruments, calculate winsorized mean of all non-NaN values over last d days
Operator: group_mean(x, weight, group)
Description: All elements in group equals to the mean
Operator: group_neutralize(x, group)
Description: Neutralizes Alpha against groups. These groups can be subindustry, industry, sector, country or a constant
Operator: group_rank(x, group)
Description: Each elements in a group is assigned the corresponding rank in this group
Operator: group_scale(x, group)
Description: Normalizes the values in a group to be between 0 and 1. (x - groupmin) / (groupmax - groupmin)
Operator: group_zscore(x, group)
Description: Calculates group Z-score - numerical measurement that describes a value's relationship to the mean of a group of values. Z-score is measured in terms of standard deviations from the mean. zscore = (data - mean) / stddev of x for each instrument within its group.
========================= 操作符结束 =======================================
========================= 数据字段开始 =======================================
注意: data_set_name: 后面的是数据字段(可以使用), description: 此字段后面的是数据字段对应的描述或使用说明(不能使用)
{'id': 324800, 'data_set_name': '可以使用:pv87_target_price_consensus_low_scale', 'description': '不可使用,仅供参考:Scale of Target Price Consensus Low'}
{'id': 8914, 'data_set_name': '可以使用:est_q_roe_raised_1wk', 'description': '不可使用,仅供参考:Number of raised analyst estimates of return on equity in percent regarding the next quarter, compared to the last weekly update'}
{'id': 2234, 'data_set_name': '可以使用:anl14_numofests_roe_fp2', 'description': '不可使用,仅供参考:Num of Estimations of Returns on Equity - upcoming 2 quarters'}
{'id': 967, 'data_set_name': '可以使用:anl10_roesmun_1yf_2330', 'description': '不可使用,仅供参考:Sample/analyst number - indicating how many analysts contributed to that particular estimate or forecast for return on equity'}
{'id': 952, 'data_set_name': '可以使用:anl10_roefy2_consensus_2325', 'description': '不可使用,仅供参考:Consensus estimate value for return on equity FY2'}
{'id': 325177, 'data_set_name': '可以使用:pv87_v2_expavg60_group_event_sentiment_score_stock_prices', 'description': '不可使用,仅供参考:60-day Exponential average of Event Sentiment Score for group Stock Prices'}
{'id': 320642, 'data_set_name': '可以使用:pv87_2_roe_af_matrix_all_number', 'description': '不可使用,仅供参考:count number of estimates (once for one analyst) of Return On Equity'}
{'id': 324813, 'data_set_name': '可以使用:pv87_target_price_of_estimates_scale', 'description': '不可使用,仅供参考:Scale of Target Price - # of Estimates'}
{'id': 8315, 'data_set_name': '可以使用:est_12m_roe_high_3mth_ago', 'description': '不可使用,仅供参考:Highest analyst estimate of return on equity in percent regarding the next 4 quarters, made in the past 3 months'}
{'id': 2374, 'data_set_name': '可以使用:anl14_stddev_roe_fp3', 'description': '不可使用,仅供参考:Standard Deviation of Estimations of Returns on Equity - upcoming 3 quarters'}
{'id': 325984, 'data_set_name': '可以使用:pv87_webv2_simpleavg60_group_css_stock_prices', 'description': '不可使用,仅供参考:60-day Simple average of CSS score that represents the news sentiment of a given story by combining various sentiment analysis techniques for group Stock Prices'}
{'id': 326080, 'data_set_name': '可以使用:pv87_webv2_weightedavg20_group_nip_stock_prices', 'description': '不可使用,仅供参考:20-day Weighted average of NIP score that represents the degree of impact a news flash has on the market over the following two-hour period for group Stock Prices'}
{'id': 326423, 'data_set_name': '可以使用:pv98_usa_pricesnap_15_vwap_15', 'description': '不可使用,仅供参考:Volume weighted average price at 15:00'}
{'id': 325750, 'data_set_name': '可以使用:pv87_webv2_expavg20_group_css_price_targets', 'description': '不可使用,仅供参考:20-day Exponential average of CSS score that represents the news sentiment of a given story by combining various sentiment analysis techniques for group Price Targets'}
{'id': 1689, 'data_set_name': '可以使用:anl14_high_roe_fp1', 'description': '不可使用,仅供参考:The highest estimation of Returns on Equity - upcoming quarter'}
{'id': 8905, 'data_set_name': '可以使用:est_q_roe_mean_3mth_ago', 'description': '不可使用,仅供参考:Mean analyst estimate of return on equity in percent regarding the next quarter, made in the past 3 months'}
{'id': 2103, 'data_set_name': '可以使用:anl14_median_roe_fp5', 'description': '不可使用,仅供参考:Median of Estimations of Returns on Equity - upcoming 5 quarters'}
{'id': 87548, 'data_set_name': '可以使用:fnd90_qes_gamef_icfroe_5y', 'description': '不可使用,仅供参考:Incremental Cash Flow Return Over Equity Over 5 Years'}
{'id': 324786, 'data_set_name': '可以使用:pv87_stock_fundnum', 'description': '不可使用,仅供参考:Number of funds holding this instrument'}
{'id': 323921, 'data_set_name': '可以使用:pv87_p_buy_price_std', 'description': '不可使用,仅供参考:Standard deviation of buying price'}
{'id': 320648, 'data_set_name': '可以使用:pv87_2_roe_af_matrix_p1_b_chngratio_std', 'description': '不可使用,仅供参考:std value of all change ratio of Return On Equity *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
{'id': 87557, 'data_set_name': '可以使用:fnd90_us_game_asset_turnover_chg', 'description': '不可使用,仅供参考:Change in Asset Turnover [ Ascending] - [Quality.Capital utilization]'}
{'id': 8319, 'data_set_name': '可以使用:est_12m_roe_low_4wks_ago', 'description': '不可使用,仅供参考:Lowest analyst estimate of return on equity in percent regarding the next 4 quarters, made in past 4 weeks'}
{'id': 322738, 'data_set_name': '可以使用:pv87_num_of_analysts_below_average_price_volatility_in_consensus_scale', 'description': '不可使用,仅供参考:Scale of # of Analysts Below Average Price Volatility - (In-Consensus)'}
{'id': 325470, 'data_set_name': '可以使用:pv87_v2_weightedavg60_group_nip_price_targets', 'description': '不可使用,仅供参考:60-day Weighted average of NIP score that represents the degree of impact a news flash has on the market over the following two-hour period for group Price Targets'}
{'id': 326119, 'data_set_name': '可以使用:pv87_webv2_weightedavg60_group_event_sentiment_score_price_targets', 'description': '不可使用,仅供参考:60-day Weighted average of Event Sentiment Score for group Price Targets'}
{'id': 320662, 'data_set_name': '可以使用:pv87_2_roe_af_matrix_p1_high', 'description': '不可使用,仅供参考:highest value of all analysts estimates of Return On Equity'}
{'id': 85713, 'data_set_name': '可以使用:fnd72_pit_or_cf_q_cf_incr_cap_stock', 'description': '不可使用,仅供参考:Increase in Capital Stocks'}
{'id': 320637, 'data_set_name': '可以使用:pv87_2_roe_af_matrix_all_dts', 'description': '不可使用,仅供参考:std value of all analysts estimates of Return On Equity'}
{'id': 325157, 'data_set_name': '可以使用:pv87_v2_expavg60_group_css_stock_prices', 'description': '不可使用,仅供参考:60-day Exponential average of CSS score that represents the news sentiment of a given story by combining various sentiment analysis techniques for group Stock Prices'}
{'id': 326077, 'data_set_name': '可以使用:pv87_webv2_weightedavg20_group_nip_price_targets', 'description': '不可使用,仅供参考:20-day Weighted average of NIP score that represents the degree of impact a news flash has on the market over the following two-hour period for group Price Targets'}
{'id': 1695, 'data_set_name': '可以使用:anl14_high_roe_fy2', 'description': '不可使用,仅供参考:The highest estimation of returns on equity - upcoming 2 years'}
{'id': 322737, 'data_set_name': '可以使用:pv87_num_of_analysts_below_average_price_volatility_in_consensus', 'description': '不可使用,仅供参考:# of Analysts Below Average Price Volatility - (In-Consensus)'}
{'id': 322563, 'data_set_name': '可以使用:pv87_last_pricelast_high_correlation', 'description': '不可使用,仅供参考:Correlation between last price and high price'}
{'id': 2105, 'data_set_name': '可以使用:anl14_median_roe_fy2', 'description': '不可使用,仅供参考:Median of Estimations of Returns on Equity - Upcoming 2 Years'}
{'id': 326383, 'data_set_name': '可以使用:pv98_pricesnapus_15_low_15', 'description': '不可使用,仅供参考:Low price at 15:00'}
{'id': 326384, 'data_set_name': '可以使用:pv98_pricesnapus_15_open_15', 'description': '不可使用,仅供参考:Open price at 15:00'}
{'id': 6740, 'data_set_name': '可以使用:anl49_35projected35yearlowpricetarget', 'description': '不可使用,仅供参考:Projected average annual target price range 3 to 5 years hence is based on the standard deviation of historic weekly percent price changes for 52 weeks applied to the average annual price projected 3 to 5 years from now (the mid-point of the range). The 3-5 year average price is determined by applying a normalized" P/E ratio to projected 3-5 year earnings per share."'}
{'id': 320686, 'data_set_name': '可以使用:pv87_2_roe_qf_matrix_p1_high', 'description': '不可使用,仅供参考:highest value of all analysts estimates of Return On Equity'}
{'id': 320659, 'data_set_name': '可以使用:pv87_2_roe_af_matrix_p1_chngratio_number', 'description': '不可使用,仅供参考:count number of all change ratio of Return On Equity *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
{'id': 319093, 'data_set_name': '可以使用:pv52_asdaq_bx_price_imprvd_avg_amt', 'description': '不可使用,仅供参考:Price Improved Average Amount (in USD)'}
{'id': 85414, 'data_set_name': '可以使用:fnd72_a1_net_cap_stock', 'description': '不可使用,仅供参考:Sum of increases and decreases in capital stock from the cash flow statement'}
{'id': 966, 'data_set_name': '可以使用:anl10_roesmun_1qf_2313', 'description': '不可使用,仅供参考:Sample/analyst number - indicating how many analysts contributed to that particular estimate or forecast for return on equity'}
{'id': 326140, 'data_set_name': '可以使用:pv87_webv2_weightedavg60_group_nip_stock_prices', 'description': '不可使用,仅供参考:60-day Weighted average of NIP score that represents the degree of impact a news flash has on the market over the following two-hour period for group Stock Prices'}
{'id': 326352, 'data_set_name': '可以使用:pv98_pricesnap1530_cap_153000', 'description': '不可使用,仅供参考:Daily market capitalization (in millions)'}
{'id': 1830, 'data_set_name': '可以使用:anl14_low_roe_fy2', 'description': '不可使用,仅供参考:The Lowest Estimation of Returns on Equity - Upcoming 2 Years'}
{'id': 6991, 'data_set_name': '可以使用:anl49_vector_35projected35yearhighpricetarget', 'description': '不可使用,仅供参考:Projected average annual target price range 3 to 5 years hence is based on the standard deviation of historic weekly percent price changes for 52 weeks applied to the average annual price projected 3 to 5 years from now (the mid-point of the range). The 3-5 year average price is determined by applying a normalized" P/E ratio to projected 3-5 year earnings per share."'}
{'id': 1404, 'data_set_name': '可以使用:management_ethics_sector_rank', 'description': '不可使用,仅供参考:Company’s rank within its sector peer group for management standards and ethics.'}
{'id': 325869, 'data_set_name': '可以使用:pv87_webv2_simpleavg1_group_css_price_targets', 'description': '不可使用,仅供参考:1-day Simple average of CSS score that represents the news sentiment of a given story by combining various sentiment analysis techniques for group Price Targets'}
{'id': 1968, 'data_set_name': '可以使用:anl14_mean_roe_fp5', 'description': '不可使用,仅供参考:Mean of estimations of returns on equity - upcoming 5 quarters'}
{'id': 6606, 'data_set_name': '可以使用:average_initial_price_with_fee', 'description': '不可使用,仅供参考:Average initial price including transaction fees.'}
{'id': 8339, 'data_set_name': '可以使用:est_12m_roe_std_3mth_ago', 'description': '不可使用,仅供参考:Standard deviation of the analyst estimate of return on equity in percent regarding the next 4 quarters, made in the past 3 months'}
{'id': 7243, 'data_set_name': '可以使用:anl69_best_roe_numest', 'description': '不可使用,仅供参考:Return on Equity # Estimates'}
{'id': 1407, 'data_set_name': '可以使用:management_ethics_subsector_rank', 'description': '不可使用,仅供参考:Company’s rank within its subsector peer group for management standards and ethics.'}
{'id': 86685, 'data_set_name': '可以使用:fnd72_s_pit_or_cf_a_cf_issue_com_stock', 'description': '不可使用,仅供参考:Issuance of common stock warrants or other common stock equivalents'}
{'id': 6335, 'data_set_name': '可以使用:anl44_roe_best_crncy_iso', 'description': '不可使用,仅供参考:roe best crncy iso'}
{'id': 320656, 'data_set_name': '可以使用:pv87_2_roe_af_matrix_p1_chngratio_low', 'description': '不可使用,仅供参考:lowest value of all change ratio of Return On Equity *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
{'id': 84131, 'data_set_name': '可以使用:quarterly_treasury_stock_value_fast_d1', 'description': '不可使用,仅供参考:Fiscal period endate of Annual Accountance Adjustment Treasury Stock Value'}
{'id': 5995, 'data_set_name': '可以使用:anl44_best_roe_lo', 'description': '不可使用,仅供参考:best roe lo'}
{'id': 325957, 'data_set_name': '可以使用:pv87_webv2_simpleavg20_group_nip_price_targets', 'description': '不可使用,仅供参考:20-day Simple average of NIP score that represents the degree of impact a news flash has on the market over the following two-hour period for group Price Targets'}
{'id': 326377, 'data_set_name': '可以使用:pv98_pricesnapus_14_open_14', 'description': '不可使用,仅供参考:Open price at 14:00'}
{'id': 84108, 'data_set_name': '可以使用:quarterly_preferred_stock_value', 'description': '不可使用,仅供参考:Fiscal period endate of Annual Accountance Adjustment Preferred Stock Value'}
{'id': 320678, 'data_set_name': '可以使用:pv87_2_roe_qf_matrix_all_number', 'description': '不可使用,仅供参考:count number of estimates (once for one analyst) of Return On Equity'}
{'id': 321116, 'data_set_name': '可以使用:pv87_cfotenure_mean', 'description': '不可使用,仅供参考:CFO tenure'}
{'id': 8902, 'data_set_name': '可以使用:est_q_roe_lowerednum_4wks', 'description': '不可使用,仅供参考:Number of lowered analyst estimates of return on equity in percent regarding the next quarter, where old and new estimates were made in the past 4 weeks'}
{'id': 322542, 'data_set_name': '可以使用:pv87_last_price_ema', 'description': '不可使用,仅供参考:Exponential Moving Average using'}
{'id': 326414, 'data_set_name': '可以使用:pv98_usa_pricesnap_14_open_14', 'description': '不可使用,仅供参考:Open price at 14:00'}
{'id': 322550, 'data_set_name': '可以使用:pv87_last_price_numintervalsincehigh', 'description': '不可使用,仅供参考:Number of intervals since last high of price'}
{'id': 323919, 'data_set_name': '可以使用:pv87_p_buy_price_mean', 'description': '不可使用,仅供参考:Mean of buying price'}
{'id': 320664, 'data_set_name': '可以使用:pv87_2_roe_af_matrix_p1_mean', 'description': '不可使用,仅供参考:mean value of all analysts estimates of Return On Equity'}
{'id': 6782, 'data_set_name': '可以使用:anl49_backfill_35projected35yearlowpricetarget', 'description': '不可使用,仅供参考:Projected average annual target price range 3 to 5 years hence is based on the standard deviation of historic weekly percent price changes for 52 weeks applied to the average annual price projected 3 to 5 years from now (the mid-point of the range). The 3-5 year average price is determined by applying a normalized" P/E ratio to projected 3-5 year earnings per share."'}
{'id': 7259, 'data_set_name': '可以使用:anl69_best_target_price', 'description': '不可使用,仅供参考:Target Price'}
{'id': 6439, 'data_set_name': '可以使用:anl44_second_en_roe_prevalue', 'description': '不可使用,仅供参考:roe prevalue'}
{'id': 325315, 'data_set_name': '可以使用:pv87_v2_simpleavg60_group_event_sentiment_score_stock_prices', 'description': '不可使用,仅供参考:60-day Simple average of Event Sentiment Score for group Stock Prices'}
{'id': 83531, 'data_set_name': '可以使用:fnd3_a_niccommonstockholders_fast_d1', 'description': '不可使用,仅供参考:Annual Net Income Attributable to Common Stockholders'}
{'id': 78769, 'data_set_name': '可以使用:fnd17_qroepct', 'description': '不可使用,仅供参考:Return on average equity - most recent quarter (annualized)'}
{'id': 321111, 'data_set_name': '可以使用:pv87_ceotenure_mean', 'description': '不可使用,仅供参考:CEO tenure'}
{'id': 6652, 'data_set_name': '可以使用:most_recent_security_price', 'description': '不可使用,仅供参考:Most recent price of the security in the trade idea.'}
{'id': 6342, 'data_set_name': '可以使用:anl44_roe_best_fperiod_override', 'description': '不可使用,仅供参考:roe best fperiod override'}
{'id': 6347, 'data_set_name': '可以使用:anl44_roe_value', 'description': '不可使用,仅供参考:Roe d0 value'}
{'id': 88049, 'data_set_name': '可以使用:oth401_game_asset_turnover_chg', 'description': '不可使用,仅供参考:Change in Asset Turnover'}
{'id': 8916, 'data_set_name': '可以使用:est_q_roe_raisednum_4wks', 'description': '不可使用,仅供参考:Number of raised analyst estimates of return on equity in percent regarding the next quarter, where old and new estimates were made in the past 4 weeks'}
{'id': 80856, 'data_set_name': '可以使用:treasury_stock_current', 'description': '不可使用,仅供参考:[Quarterly] Treasury Stock - Common'}
{'id': 85873, 'data_set_name': '可以使用:fnd72_pit_or_cr_a_normalized_roe', 'description': '不可使用,仅供参考:Operating ROE is calculated using the following formula'}
{'id': 321778, 'data_set_name': '可以使用:pv87_energymanagementindustrypercentile_momentum_mean', 'description': '不可使用,仅供参考:Trailing 12m score of Energy Management topic'}
{'id': 80830, 'data_set_name': '可以使用:stockholders_other_paid_in_capital', 'description': '不可使用,仅供参考:Other paid-in capital attributable to stockholders.'}
{'id': 326401, 'data_set_name': '可以使用:pv98_usa_pricesnap_12_volume_12', 'description': '不可使用,仅供参考:Volume at 12:00'}
{'id': 326370, 'data_set_name': '可以使用:pv98_pricesnapus_13_open_13', 'description': '不可使用,仅供参考:Open price at 13:00'}
{'id': 935, 'data_set_name': '可以使用:anl10_roefq1_smart_ests_v0_2320', 'description': '不可使用,仅供参考:Smart estimates version 0 value for return on equity for Q1'}
{'id': 83801, 'data_set_name': '可以使用:fnd3_q_niccommonstockholders_fast_d1', 'description': '不可使用,仅供参考:Quarterly Net Income Attributable to Common Stockholders'}
{'id': 86562, 'data_set_name': '可以使用:fnd72_s_pit_or_bs_q_2_bs_common_stock', 'description': '不可使用,仅供参考:Common Stocks'}
{'id': 320669, 'data_set_name': '可以使用:pv87_2_roe_qf_matrix_all_chngratio_mean', 'description': '不可使用,仅供参考:mean value of all change ratio of Return On Equity *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
{'id': 6627, 'data_set_name': '可以使用:entry_price_inclusive_fees', 'description': '不可使用,仅供参考:The average initial price adjusted for transaction fees.'}
{'id': 326418, 'data_set_name': '可以使用:pv98_usa_pricesnap_15_close_15', 'description': '不可使用,仅供参考:Close price at 15:00'}
{'id': 326017, 'data_set_name': '可以使用:pv87_webv2_simpleavg60_group_nip_price_targets', 'description': '不可使用,仅供参考:60-day Simple average of NIP score that represents the degree of impact a news flash has on the market over the following two-hour period for group Price Targets'}
{'id': 1824, 'data_set_name': '可以使用:anl14_low_roe_fp1', 'description': '不可使用,仅供参考:The Lowest Estimation of Returns on Equity - upcoming quarter'}
{'id': 322538, 'data_set_name': '可以使用:pv87_last_highlast_lowlast_pricelast_volume_stochf_d', 'description': '不可使用,仅供参考:STOCHF_D using last high price, last low price, last price, volume'}
{'id': 324651, 'data_set_name': '可以使用:pv87_s_sell_price_std', 'description': '不可使用,仅供参考:Standard deviation of selling price'}
{'id': 86733, 'data_set_name': '可以使用:fnd72_s_pit_or_cr_q_accounts_payable_turnover', 'description': '不可使用,仅供参考:Company purchases over average accounts payable'}
{'id': 6345, 'data_set_name': '可以使用:anl44_roe_most_recent_period_end_dt', 'description': '不可使用,仅供参考:roe most recent period end dt'}
{'id': 319193, 'data_set_name': '可以使用:pv52_yse_chicago_price_imprvd_avg_amt', 'description': '不可使用,仅供参考:Price Improved Average Amount (in USD)'}
{'id': 6436, 'data_set_name': '可以使用:anl44_second_en_roe_coveredby', 'description': '不可使用,仅供参考:roe coveredby'}
{'id': 320689, 'data_set_name': '可以使用:pv87_2_roe_qf_matrix_p1_median', 'description': '不可使用,仅供参考:median value of all analysts estimates of Return On Equity'}
{'id': 325960, 'data_set_name': '可以使用:pv87_webv2_simpleavg20_group_nip_stock_prices', 'description': '不可使用,仅供参考:20-day Simple average of NIP score that represents the degree of impact a news flash has on the market over the following two-hour period for group Stock Prices'}
{'id': 84204, 'data_set_name': '可以使用:fnd31_devnorthamericaadditionalfactor4_yoychgroepct', 'description': '不可使用,仅供参考:Yearly Change in ROE - Percentage Method. It is defined as the yearly percentage change in the ratio of trailing-twelve-month earnings before extraordinary items divided by current total book equity.'}
{'id': 326371, 'data_set_name': '可以使用:pv98_pricesnapus_13_volume_13', 'description': '不可使用,仅供参考:Volume at 13:00'}
{'id': 320638, 'data_set_name': '可以使用:pv87_2_roe_af_matrix_all_high', 'description': '不可使用,仅供参考:highest value of all analysts estimates of Return On Equity'}
{'id': 8899, 'data_set_name': '可以使用:est_q_roe_low_4wks_ago', 'description': '不可使用,仅供参考:Lowest analyst estimate of return on equity in percent regarding the next quarter, made in the past 4 weeks'}
{'id': 8328, 'data_set_name': '可以使用:est_12m_roe_median_3mth_ago', 'description': '不可使用,仅供参考:Median analyst estimate of return on equity in percent regarding the next 4 quarters, made in past 3 months'}
{'id': 78950, 'data_set_name': '可以使用:fn_business_combination_purchase_price_q', 'description': '不可使用,仅供参考:Business Combination, Purchase Price'}
{'id': 946, 'data_set_name': '可以使用:anl10_roefy1_pred_surps_v0_2292', 'description': '不可使用,仅供参考:Predicted surprise version 0 for return on equity for FY1 (calculated as (smart_ests - consensus)/consensus)'}
{'id': 322735, 'data_set_name': '可以使用:pv87_num_of_analysts_average_price_volatility_in_consensus', 'description': '不可使用,仅供参考:# of Analysts Average Price Volatility - (In-Consensus)'}
{'id': 1406, 'data_set_name': '可以使用:management_ethics_subsector_percentile', 'description': '不可使用,仅供参考:Percentile ranking within subsector peer group for management standards and ethics.'}
{'id': 322736, 'data_set_name': '可以使用:pv87_num_of_analysts_average_price_volatility_in_consensus_scale', 'description': '不可使用,仅供参考:Scale of # of Analysts Average Price Volatility - (In-Consensus)'}
{'id': 326403, 'data_set_name': '可以使用:pv98_usa_pricesnap_13_cap_13', 'description': '不可使用,仅供参考:Market capitalization at 13:00'}
{'id': 78721, 'data_set_name': '可以使用:fnd17_price2bk2', 'description': '不可使用,仅供参考:Price to Book - most recent quarter, 1 year ago'}
{'id': 6655, 'data_set_name': '可以使用:net_stock_return_percent', 'description': '不可使用,仅供参考:The net total return from all ideas since the previous market close.'}
{'id': 7240, 'data_set_name': '可以使用:anl69_best_roe_hi', 'description': '不可使用,仅供参考:Return on Equity High'}
{'id': 325887, 'data_set_name': '可以使用:pv87_webv2_simpleavg1_group_event_sentiment_score_stock_prices', 'description': '不可使用,仅供参考:1-day Simple average of Event Sentiment Score for group Stock Prices'}
{'id': 1825, 'data_set_name': '可以使用:anl14_low_roe_fp2', 'description': '不可使用,仅供参考:The lowest estimation of returns on equity - upcoming 2 quarters'}
{'id': 963, 'data_set_name': '可以使用:anl10_roepast_det_estvalue', 'description': '不可使用,仅供参考:Estimate value for return on equity'}
{'id': 320633, 'data_set_name': '可以使用:pv87_2_roe_af_matrix_all_chngratio_mean', 'description': '不可使用,仅供参考:mean value of all change ratio of Return On Equity *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
{'id': 84248, 'data_set_name': '可以使用:fnd31_qsg5additionalfactor3_backfilled_yoychgroepct', 'description': '不可使用,仅供参考:Yearly Change in ROE - Percentage Method. It is defined as the yearly percentage change in the ratio of trailing-12-month earnings before extraordinary items divided by current total book equity'}
{'id': 79109, 'data_set_name': '可以使用:fn_treasury_stock_shares_q', 'description': '不可使用,仅供参考:Number of common and preferred shares that were previously issued and that were repurchased by the issuing entity and held in treasury on the financial statement date. This stock has no voting rights and receives no dividends.'}
{'id': 2100, 'data_set_name': '可以使用:anl14_median_roe_fp2', 'description': '不可使用,仅供参考:Median of Estimations of Returns on Equity - Upcoming 2 Quarters'}
{'id': 325808, 'data_set_name': '可以使用:pv87_webv2_expavg60_group_css_price_targets', 'description': '不可使用,仅供参考:60-day Exponential average of CSS score that represents the news sentiment of a given story by combining various sentiment analysis techniques for group Price Targets'}
{'id': 322532, 'data_set_name': '可以使用:pv87_last_highlast_lowlast_price_typprice', 'description': '不可使用,仅供参考:Typical Price using last high price, last low price'}
{'id': 325826, 'data_set_name': '可以使用:pv87_webv2_expavg60_group_event_sentiment_score_price_targets', 'description': '不可使用,仅供参考:60-day Exponential average of Event Sentiment Score for group Price Targets'}
{'id': 7631, 'data_set_name': '可以使用:anl69_roe_best_fperiod_override', 'description': '不可使用,仅供参考:Fiscal Period Override'}
{'id': 957, 'data_set_name': '可以使用:anl10_roefy2_smart_ests_v1_2291', 'description': '不可使用,仅供参考:Smart estimates version 1 value for return on equity for FY2'}
{'id': 319169, 'data_set_name': '可以使用:pv52_yse_arca_price_imprvd_avg_amt', 'description': '不可使用,仅供参考:Price Improved Average Amount (in USD)'}
{'id': 6695, 'data_set_name': '可以使用:security_trade_price', 'description': '不可使用,仅供参考:Price associated with an investment change or event.'}
{'id': 320643, 'data_set_name': '可以使用:pv87_2_roe_af_matrix_p1_b_chngratio_high', 'description': '不可使用,仅供参考:highest value of all change ratio of Return On Equity *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
{'id': 85529, 'data_set_name': '可以使用:fnd72_pit_or_bs_a_bs_amt_of_tsy_stock', 'description': '不可使用,仅供参考:Amount of Treasury Shares'}
{'id': 944, 'data_set_name': '可以使用:anl10_roefq2_smart_ests_v2_2308', 'description': '不可使用,仅供参考:Smart estimates version 2 value for return on equity for Q2'}
{'id': 325332, 'data_set_name': '可以使用:pv87_v2_simpleavg60_group_nip_price_targets', 'description': '不可使用,仅供参考:60-day Simple average of NIP score that represents the degree of impact a news flash has on the market over the following two-hour period for group Price Targets'}
{'id': 319229, 'data_set_name': '可以使用:pv52_yse_price_imprvd_shares', 'description': '不可使用,仅供参考:Price-Improved Shares'}
{'id': 326043, 'data_set_name': '可以使用:pv87_webv2_weightedavg20_group_css_price_targets', 'description': '不可使用,仅供参考:20-day Weighted average of CSS score that represents the news sentiment of a given story by combining various sentiment analysis techniques for group Price Targets'}
{'id': 320639, 'data_set_name': '可以使用:pv87_2_roe_af_matrix_all_low', 'description': '不可使用,仅供参考:lowest value of all analysts estimates of Return On Equity'}
{'id': 1692, 'data_set_name': '可以使用:anl14_high_roe_fp4', 'description': '不可使用,仅供参考:The Highest Estimation of Returns on Equity - upcoming 4 quarters'}
{'id': 7626, 'data_set_name': '可以使用:anl69_roe_best_cur_fiscal_qtr_period', 'description': '不可使用,仅供参考:Current Fiscal Quarter Period Date'}
{'id': 86695, 'data_set_name': '可以使用:fnd72_s_pit_or_cf_a_cf_tax_benefit_frm_stock_options', 'description': '不可使用,仅供参考:Tax Benefit from Stock Options'}
{'id': 78646, 'data_set_name': '可以使用:fnd17_chpctpriceqtd', 'description': '不可使用,仅供参考:Quarter to Date price change in percentage'}
{'id': 7236, 'data_set_name': '可以使用:anl69_best_roe_4wk_chg', 'description': '不可使用,仅供参考:Return on Equity 4 wk Chg'}
{'id': 321326, 'data_set_name': '可以使用:pv87_daily_matrix_nonperiodic_target_price_consensus_mean_numnochangeunfiltered', 'description': '不可使用,仅供参考:Number of no change revisions (unfiltered) of Target Price Consensus Mean'}
{'id': 84268, 'data_set_name': '可以使用:fnd31_qsg5additionalfactor3_yoychgroepct', 'description': '不可使用,仅供参考:Yearly Change in ROE - Percentage Method. It is defined as the yearly percentage change in the ratio of trailing-twelve-month earnings before extraordinary items divided by current total book equity.'}
{'id': 326358, 'data_set_name': '可以使用:pv98_pricesnap1530_vwap_153000', 'description': '不可使用,仅供参考:Daily volume weighted average price'}
{'id': 78355, 'data_set_name': '可以使用:fnd14_current_price_close', 'description': '不可使用,仅供参考:Current closing price'}
{'id': 2236, 'data_set_name': '可以使用:anl14_numofests_roe_fp4', 'description': '不可使用,仅供参考:Num of Estimations of Returns on Equity - upcoming 4 quarters'}
{'id': 326420, 'data_set_name': '可以使用:pv98_usa_pricesnap_15_low_15', 'description': '不可使用,仅供参考:Low price at 15:00'}
{'id': 322544, 'data_set_name': '可以使用:pv87_last_price_kurtosis', 'description': '不可使用,仅供参考:Kurtosis of price'}
{'id': 324804, 'data_set_name': '可以使用:pv87_target_price_consensus_median_scale', 'description': '不可使用,仅供参考:Scale of Target Price Consensus Median'}
{'id': 322625, 'data_set_name': '可以使用:pv87_matrix_nonperiodic_target_price_consensus_mean_numnochange', 'description': '不可使用,仅供参考:Number of no change revisions of Target Price Consensus Mean'}
{'id': 319110, 'data_set_name': '可以使用:pv52_asdaq_price_imprvd_shares', 'description': '不可使用,仅供参考:Price-Improved Shares'}
{'id': 958, 'data_set_name': '可以使用:anl10_roefy2_smart_ests_v2_2328', 'description': '不可使用,仅供参考:Smart estimates version 2 value for return on equity for FY2'}
{'id': 326060, 'data_set_name': '可以使用:pv87_webv2_weightedavg20_group_event_sentiment_score_price_targets', 'description': '不可使用,仅供参考:20-day Weighted average of Event Sentiment Score for group Price Targets'}
{'id': 960, 'data_set_name': '可以使用:anl10_roepast_det_anntime', 'description': '不可使用,仅供参考:Announce time for return on equity estimates'}
{'id': 8320, 'data_set_name': '可以使用:est_12m_roe_lowered_1wk', 'description': '不可使用,仅供参考:Count of unique IDs of industry participants. Industry stands for an aggregate view of all equity clearance activity for the date, symbol, and transaction type in question.'}
{'id': 325295, 'data_set_name': '可以使用:pv87_v2_simpleavg60_group_css_stock_prices', 'description': '不可使用,仅供参考:60-day Simple average of CSS score that represents the news sentiment of a given story by combining various sentiment analysis techniques for group Stock Prices'}
{'id': 79078, 'data_set_name': '可以使用:fn_payments_for_repurchase_of_common_stock_a', 'description': '不可使用,仅供参考:Value reported on Cash Flow Statement. May include shares repurchased as part of a buyback plan, as well as shares purchased for employee compensation, etc.'}
{'id': 321324, 'data_set_name': '可以使用:pv87_daily_matrix_nonperiodic_target_price_consensus_mean_numdownunfiltered', 'description': '不可使用,仅供参考:Number of down revisions (unfiltered) of Target Price Consensus Mean'}
{'id': 325663, 'data_set_name': '可以使用:pv87_waterandwastewatermanagementindustrypercentile_insight_mean', 'description': '不可使用,仅供参考:Long-term score of Water And Wastewater Management topic'}
{'id': 8911, 'data_set_name': '可以使用:est_q_roe_num_28d', 'description': '不可使用,仅供参考:Number of analyst estimates of return on equity in percent regarding the next quarter, made in the last 28 days'}
{'id': 325108, 'data_set_name': '可以使用:pv87_v2_expavg20_group_event_sentiment_score_stock_prices', 'description': '不可使用,仅供参考:20-day Exponential average of Event Sentiment Score for group Stock Prices'}
{'id': 1401, 'data_set_name': '可以使用:management_ethics_industry_percentile', 'description': '不可使用,仅供参考:Percentile ranking within industry peer group for management standards and ethics.'}
{'id': 6629, 'data_set_name': '可以使用:expected_exit_price_2', 'description': '不可使用,仅供参考:The projected price at which the contributor expects to close the position.'}
{'id': 83352, 'data_set_name': '可以使用:fnd3_Q_niccommonstockholders', 'description': '不可使用,仅供参考:Quarterly Net Income Attributable to Common Stockholders'}
{'id': 968, 'data_set_name': '可以使用:anl10_roesmun_2qf_2305', 'description': '不可使用,仅供参考:Sample/analyst number - indicating how many analysts contributed to that particular estimate or forecast for return on equity'}
{'id': 326413, 'data_set_name': '可以使用:pv98_usa_pricesnap_14_low_14', 'description': '不可使用,仅供参考:Low price at 14:00'}
{'id': 316689, 'data_set_name': '可以使用:bid_ask_price_gap', 'description': '不可使用,仅供参考:Difference between the best bid and ask prices for a security.'}
{'id': 2233, 'data_set_name': '可以使用:anl14_numofests_roe_fp1', 'description': '不可使用,仅供参考:Num of estimations of returns on equity - upcoming quarter'}
{'id': 8314, 'data_set_name': '可以使用:est_12m_roe_high', 'description': '不可使用,仅供参考:Highest analyst estimate of return on equity in percent regarding the next 4 quarters'}
{'id': 87612, 'data_set_name': '可以使用:fnd90_us_qes_gamef_icfroe_3y', 'description': '不可使用,仅供参考:Incremental Cash Flow Return over Equity over 3 years'}
{'id': 941, 'data_set_name': '可以使用:anl10_roefq2_pred_surps_v2_2327', 'description': '不可使用,仅供参考:Predicted surprise version 2 for return on equity for Q2 (calculated as (smart_ests - consensus)/consensus)'}
{'id': 320640, 'data_set_name': '可以使用:pv87_2_roe_af_matrix_all_mean', 'description': '不可使用,仅供参考:mean value of all analysts estimates of Return On Equity'}
{'id': 85671, 'data_set_name': '可以使用:fnd72_pit_or_cf_a_cf_decr_cap_stock', 'description': '不可使用,仅供参考:Always negative. Repurchase of common stock, common stock warrants, or other common stock equivalents. Includes redemption of preferred share capital. Includes purchase of treasury stock. Index'}
{'id': 78724, 'data_set_name': '可以使用:fnd17_priceavg50day', 'description': '不可使用,仅供参考:Average price of the last 50 days'}
{'id': 325223, 'data_set_name': '可以使用:pv87_v2_simpleavg20_group_css_price_targets', 'description': '不可使用,仅供参考:20-day Simple average of CSS score that represents the news sentiment of a given story by combining various sentiment analysis techniques for group Price Targets'}
{'id': 8987, 'data_set_name': '可以使用:stability', 'description': '不可使用,仅供参考:Historical 5-year stability'}
{'id': 319148, 'data_set_name': '可以使用:pv52_yse_american_price_imprvd_avg_amt', 'description': '不可使用,仅供参考:Price Improved Average Amount (in USD)'}
{'id': 324292, 'data_set_name': '可以使用:pv87_prv2_weightedavg60_group_nip_stock_prices', 'description': '不可使用,仅供参考:60-day Weighted average of NIP score that represents the degree of impact a news flash has on the market over the following two-hour period for group Stock Prices'}
{'id': 6949, 'data_set_name': '可以使用:anl49_pricestabilityindex', 'description': "不可使用,仅供参考:A measure of the stability of a stock's price. It includes sensitivity to the market (Beta) as well as the stock's inherent volatility range from 100 (highest) to 5 (lowest)."}
{'id': 8326, 'data_set_name': '可以使用:est_12m_roe_mean_4wks_ago', 'description': '不可使用,仅供参考:Mean analyst estimate of return on equity in percent regarding the next 4 quarters, made in the past 4 weeks'}
{'id': 320673, 'data_set_name': '可以使用:pv87_2_roe_qf_matrix_all_dts', 'description': '不可使用,仅供参考:std value of all analysts estimates of Return On Equity'}
{'id': 323973, 'data_set_name': '可以使用:pv87_price_volatility_estimate_mean', 'description': '不可使用,仅供参考:Mean of Price Volatility Estimate'}
{'id': 326366, 'data_set_name': '可以使用:pv98_pricesnapus_13_cap_13', 'description': '不可使用,仅供参考:Market capitalization at 13:00'}
{'id': 7238, 'data_set_name': '可以使用:anl69_best_roe_4wk_up', 'description': '不可使用,仅供参考:Return on Equity 4 wk Up'}
{'id': 78126, 'data_set_name': '可以使用:incentive_plan_stock_price', 'description': '不可使用,仅供参考:Stock price at the time of the incentive plan award.'}
{'id': 959, 'data_set_name': '可以使用:anl10_roepast_det_analyst', 'description': '不可使用,仅供参考:Analyst ID for return on equity estimates'}
{'id': 319170, 'data_set_name': '可以使用:pv52_yse_arca_price_imprvd_shares', 'description': '不可使用,仅供参考:Price-Improved Shares'}
{'id': 80829, 'data_set_name': '可以使用:stockholders_other_comprehensive_funds', 'description': '不可使用,仅供参考:Other comprehensive funds attributable to stockholders.'}
{'id': 326400, 'data_set_name': '可以使用:pv98_usa_pricesnap_12_open_12', 'description': '不可使用,仅供参考:Open price at 12:00'}
{'id': 1551, 'data_set_name': '可以使用:anl14_actvalue_roe_fy0', 'description': '不可使用,仅供参考:Returns on Equity - recent last year'}
{'id': 8898, 'data_set_name': '可以使用:est_q_roe_low_3mth_ago', 'description': '不可使用,仅供参考:Lowest analyst estimate of return on equity in percent regarding the next quarter, made in the past 3 months'}
{'id': 6440, 'data_set_name': '可以使用:anl44_second_en_roe_value', 'description': '不可使用,仅供参考:roe value'}
{'id': 2376, 'data_set_name': '可以使用:anl14_stddev_roe_fp5', 'description': '不可使用,仅供参考:Standard deviation of estimations of returns on equity - upcoming 5 quarters'}
{'id': 1402, 'data_set_name': '可以使用:management_ethics_industry_rank', 'description': '不可使用,仅供参考:Company’s rank within its industry peer group for management standards and ethics.'}
{'id': 1690, 'data_set_name': '可以使用:anl14_high_roe_fp2', 'description': '不可使用,仅供参考:The highest estimation of returns on equity - upcoming 2 quarters'}
{'id': 323971, 'data_set_name': '可以使用:pv87_price_volatility_estimate_high', 'description': '不可使用,仅供参考:High of Price Volatility Estimate'}
{'id': 325926, 'data_set_name': '可以使用:pv87_webv2_simpleavg20_group_css_stock_prices', 'description': '不可使用,仅供参考:20-day Simple average of CSS score that represents the news sentiment of a given story by combining various sentiment analysis techniques for group Stock Prices'}
{'id': 6660, 'data_set_name': '可以使用:period_opening_price', 'description': '不可使用,仅供参考:The closing price before the start of the selected period.'}
{'id': 324803, 'data_set_name': '可以使用:pv87_target_price_consensus_median', 'description': '不可使用,仅供参考:Target Price Consensus Median'}
{'id': 5844, 'data_set_name': '可以使用:anl44_2_roe_lastactvalue', 'description': '不可使用,仅供参考:roe lastactvalue'}
{'id': 86602, 'data_set_name': '可以使用:fnd72_s_pit_or_bs_q_bs_amt_of_tsy_stock', 'description': '不可使用,仅供参考:Amount of Treasury Shares'}
{'id': 321777, 'data_set_name': '可以使用:pv87_energymanagementindustrypercentile_insight_mean', 'description': '不可使用,仅供参考:Long-term score of Energy Management topic'}
{'id': 8909, 'data_set_name': '可以使用:est_q_roe_median_4wks_ago', 'description': '不可使用,仅供参考:Median analyst estimate of return on equity in percent regarding the next quarter, made in the past 4 weeks'}
{'id': 320671, 'data_set_name': '可以使用:pv87_2_roe_qf_matrix_all_chngratio_number', 'description': '不可使用,仅供参考:count number of all change ratio of Return On Equity *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
{'id': 943, 'data_set_name': '可以使用:anl10_roefq2_smart_ests_v1_2300', 'description': '不可使用,仅供参考:Smart estimates version 1 value for return on equity for Q2'}
{'id': 85717, 'data_set_name': '可以使用:fnd72_pit_or_cf_q_cf_issue_com_stock', 'description': '不可使用,仅供参考:Issuance of common stock warrants or other common stock equivalents'}
{'id': 84130, 'data_set_name': '可以使用:quarterly_treasury_stock_value', 'description': '不可使用,仅供参考:Fiscal period endate of Annual Accountance Adjustment Treasury Stock Value'}
{'id': 322627, 'data_set_name': '可以使用:pv87_matrix_nonperiodic_target_price_consensus_mean_numup', 'description': '不可使用,仅供参考:Number of up revisions of Target Price Consensus Mean'}
{'id': 2377, 'data_set_name': '可以使用:anl14_stddev_roe_fy1', 'description': '不可使用,仅供参考:Standard Deviation of Estimations of Returns on Equity - Upcoming Year'}
{'id': 325105, 'data_set_name': '可以使用:pv87_v2_expavg20_group_event_sentiment_score_price_targets', 'description': '不可使用,仅供参考:20-day Exponential average of Event Sentiment Score for group Price Targets'}
{'id': 326355, 'data_set_name': '可以使用:pv98_pricesnap1530_low_153000', 'description': '不可使用,仅供参考:Daily low price'}
{'id': 938, 'data_set_name': '可以使用:anl10_roefq2_consensus_2298', 'description': '不可使用,仅供参考:Consensus estimate value for return on equity Q2'}
{'id': 324649, 'data_set_name': '可以使用:pv87_s_sell_price_mean', 'description': '不可使用,仅供参考:Mean of selling price'}
{'id': 323974, 'data_set_name': '可以使用:pv87_price_volatility_estimate_median', 'description': '不可使用,仅供参考:Median of Price Volatility Estimate'}
{'id': 319409, 'data_set_name': '可以使用:pv64_out_stal_fund_turnover', 'description': '不可使用,仅供参考:Fund turnover is the percentage of the portfolio that was changed or replaced over a 1-year time period. This 1 year is the fiscal year of the fund. Fund turnover is updated from annual reports.'}
{'id': 326362, 'data_set_name': '可以使用:pv98_pricesnapus_12_low_12', 'description': '不可使用,仅供参考:Daily low price at 12:00'}
{'id': 320819, 'data_set_name': '可以使用:pv87_2iqinsider_global_dailyeq_buy_price_max', 'description': '不可使用,仅供参考:Max of Buying price'}
{'id': 86178, 'data_set_name': '可以使用:fnd72_pit_or_is_a_is_pro_forma_dil_eps_stock_comp', 'description': '不可使用,仅供参考:The pro forma bottom line diluted EPS as if stock-based compensation were recorded in the income statement as an expense'}
{'id': 78615, 'data_set_name': '可以使用:fnd17_aroe5yavg', 'description': '不可使用,仅供参考:Return on average equity - 5 year average'}
{'id': 322554, 'data_set_name': '可以使用:pv87_last_price_skewness', 'description': '不可使用,仅供参考:Skewness of price'}
{'id': 948, 'data_set_name': '可以使用:anl10_roefy1_pred_surps_v2_2311', 'description': '不可使用,仅供参考:Predicted surprise version 2 for return on equity for FY1 (calculated as (smart_ests - consensus)/consensus)'}
{'id': 324204, 'data_set_name': '可以使用:pv87_prv2_simpleavg60_group_nip_stock_prices', 'description': '不可使用,仅供参考:60-day Simple average of NIP score that represents the degree of impact a news flash has on the market over the following two-hour period for group Stock Prices'}
{'id': 8971, 'data_set_name': '可以使用:price', 'description': "不可使用,仅供参考:Yesterday's price"}
{'id': 87006, 'data_set_name': '可以使用:fnd72_s_pit_or_is_q_is_expense_stock_based_comp', 'description': '不可使用,仅供参考:The expense for stock-based compensation'}
{'id': 84172, 'data_set_name': '可以使用:fnd31_chgroeart', 'description': '不可使用,仅供参考:Yearly Change in ROE - Arithmetic Difference. It is defined as the yearly arithmetic change in the ratio of trailing-twelve-month earnings before extraordinary items divided by current total book equity.'}
{'id': 324814, 'data_set_name': '可以使用:pv87_target_price_standard_deviation', 'description': '不可使用,仅供参考:Target Price - Standard Deviation'}
{'id': 326385, 'data_set_name': '可以使用:pv98_pricesnapus_15_volume_15', 'description': '不可使用,仅供参考:Volume at 15:00'}
{'id': 86389, 'data_set_name': '可以使用:fnd72_q2_roa_to_roe', 'description': '不可使用,仅供参考:Return on assets as a percentage of return on equity'}
{'id': 325088, 'data_set_name': '可以使用:pv87_v2_expavg20_group_css_stock_prices', 'description': '不可使用,仅供参考:20-day Exponential average of CSS score that represents the news sentiment of a given story by combining various sentiment analysis techniques for group Stock Prices'}
{'id': 5993, 'data_set_name': '可以使用:anl44_best_roe_chg_pct', 'description': '不可使用,仅供参考:best roe chg pct'}
{'id': 321042, 'data_set_name': '可以使用:pv87_buy_price_min', 'description': '不可使用,仅供参考:No field description'}
{'id': 6866, 'data_set_name': '可以使用:anl49_backfill_recentprice', 'description': '不可使用,仅供参考:The price of the common stock as of the close of business on the most recent Wednesday prior to the latest data base update.'}
{'id': 78964, 'data_set_name': '可以使用:fn_comp_not_rec_stock_options_q', 'description': '不可使用,仅供参考:Unrecognized cost of unvested stock option awards.'}
{'id': 326357, 'data_set_name': '可以使用:pv98_pricesnap1530_volume_153000', 'description': '不可使用,仅供参考:Daily volume'}
{'id': 320687, 'data_set_name': '可以使用:pv87_2_roe_qf_matrix_p1_low', 'description': '不可使用,仅供参考:lowest value of all analysts estimates of Return On Equity'}
{'id': 319214, 'data_set_name': '可以使用:pv52_yse_national_price_imprvd_avg_amt', 'description': '不可使用,仅供参考:Price Improved Average Amount (in USD)'}
{'id': 320636, 'data_set_name': '可以使用:pv87_2_roe_af_matrix_all_chngratio_std', 'description': '不可使用,仅供参考:std value of all change ratio of Return On Equity *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
{'id': 6341, 'data_set_name': '可以使用:anl44_roe_best_fiscal_period_dt', 'description': '不可使用,仅供参考:roe best fiscal period dt'}
{'id': 930, 'data_set_name': '可以使用:anl10_roeff_2323', 'description': '不可使用,仅供参考:Ff 2323 for return on equity'}
{'id': 322560, 'data_set_name': '可以使用:pv87_last_priceinterval_volume_correlation', 'description': '不可使用,仅供参考:Correlation between interval price and volume'}
{'id': 325433, 'data_set_name': '可以使用:pv87_v2_weightedavg60_group_css_stock_prices', 'description': '不可使用,仅供参考:60-day Weighted average of CSS score that represents the news sentiment of a given story by combining various sentiment analysis techniques for group Stock Prices'}
{'id': 78616, 'data_set_name': '可以使用:fnd17_aroepct', 'description': '不可使用,仅供参考:Return on average equity - most recent fiscal year'}
{'id': 80831, 'data_set_name': '可以使用:stockholders_other_paid_in_items', 'description': '不可使用,仅供参考:Other paid-in items attributable to stockholders.'}
{'id': 322535, 'data_set_name': '可以使用:pv87_last_highlast_lowlast_pricelast_volume_adosc', 'description': '不可使用,仅供参考:Chaikin A/D Oscillator using last high price, last low price, last price'}
{'id': 79108, 'data_set_name': '可以使用:fn_treasury_stock_shares_a', 'description': '不可使用,仅供参考:Number of common and preferred shares that were previously issued and that were repurchased by the issuing entity and held in treasury on the financial statement date. This stock has no voting rights and receives no dividends.'}
{'id': 321904, 'data_set_name': '可以使用:pv87_es_roe_fy1_r1m_mean', 'description': '不可使用,仅供参考:FY1 ROE revision, 1M'}
{'id': 5032, 'data_set_name': '可以使用:anl16_sranastockest1through5', 'description': '不可使用,仅供参考:SRANA recommendations on a scale of 1 to 5.'}
{'id': 320658, 'data_set_name': '可以使用:pv87_2_roe_af_matrix_p1_chngratio_median', 'description': '不可使用,仅供参考:median value of all change ratio of Return On Equity *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
{'id': 5640, 'data_set_name': '可以使用:min_stock_option_expense_guidance', 'description': '不可使用,仅供参考:Stock option expense - minimum guidance value'}
{'id': 85682, 'data_set_name': '可以使用:fnd72_pit_or_cf_a_cf_issue_com_stock', 'description': '不可使用,仅供参考:Issuance of common stock warrants or other common stock equivalents'}
{'id': 1405, 'data_set_name': '可以使用:management_ethics_standards_score', 'description': '不可使用,仅供参考:Score measuring management’s ethical standards, stakeholder engagement, and ESG integration.'}
{'id': 80826, 'data_set_name': '可以使用:stock_dividends_payable_recorded', 'description': '不可使用,仅供参考:Stock dividends declared but not yet paid.'}
{'id': 323922, 'data_set_name': '可以使用:pv87_p_sell_price_count', 'description': '不可使用,仅供参考:Count of selling price'}
{'id': 326405, 'data_set_name': '可以使用:pv98_usa_pricesnap_13_high_13', 'description': '不可使用,仅供参考:Daily high price at 13:00'}
{'id': 324647, 'data_set_name': '可以使用:pv87_s_buy_price_std', 'description': '不可使用,仅供参考:Standard deviation of buying price'}
{'id': 321123, 'data_set_name': '可以使用:pv87_cfroe_mean', 'description': '不可使用,仅供参考:Cash flow return on equity (CFROE)'}
{'id': 325194, 'data_set_name': '可以使用:pv87_v2_expavg60_group_nip_price_targets', 'description': '不可使用,仅供参考:60-day Exponential average of NIP score that represents the degree of impact a news flash has on the market over the following two-hour period for group Price Targets'}
{'id': 87546, 'data_set_name': '可以使用:fnd90_qes_gamef_icfroe_1y', 'description': '不可使用,仅供参考:Incremental Cash Flow Return Over Equity Over 1 Year'}
{'id': 326374, 'data_set_name': '可以使用:pv98_pricesnapus_14_close_14', 'description': '不可使用,仅供参考:Close price at 14:00'}
{'id': 320650, 'data_set_name': '可以使用:pv87_2_roe_af_matrix_p1_b_high', 'description': '不可使用,仅供参考:highest value of all analysts estimates of Return On Equity'}
{'id': 325943, 'data_set_name': '可以使用:pv87_webv2_simpleavg20_group_event_sentiment_score_stock_prices', 'description': '不可使用,仅供参考:20-day Simple average of Event Sentiment Score for group Stock Prices'}
{'id': 321903, 'data_set_name': '可以使用:pv87_es_roe_fy1_me_mean', 'description': '不可使用,仅供参考:ROE, FY1'}
{'id': 320676, 'data_set_name': '可以使用:pv87_2_roe_qf_matrix_all_mean', 'description': '不可使用,仅供参考:mean value of all analysts estimates of Return On Equity'}
{'id': 326408, 'data_set_name': '可以使用:pv98_usa_pricesnap_13_volume_13', 'description': '不可使用,仅供参考:Volume at 13:00'}
{'id': 78378, 'data_set_name': '可以使用:fnd14_hiwater_price_close', 'description': '不可使用,仅供参考:Highest closing price reported'}
{'id': 8895, 'data_set_name': '可以使用:est_q_roe_high_3mth_ago', 'description': '不可使用,仅供参考:Highest analyst estimate of return on equity in percent regarding the next quarter, made in the past 3 months'}
{'id': 324794, 'data_set_name': '可以使用:pv87_supplychainmanagement_pulse_mean', 'description': '不可使用,仅供参考:Short-term score of Supply Chain Management topic'}
{'id': 7637, 'data_set_name': '可以使用:anl69_roe_most_recent_period_end_dt', 'description': '不可使用,仅供参考:Most Recent Period End Date'}
{'id': 78125, 'data_set_name': '可以使用:incentive_option_exercise_price', 'description': '不可使用,仅供参考:Price at which options can be exercised in the incentive plan.'}
{'id': 326381, 'data_set_name': '可以使用:pv98_pricesnapus_15_close_15', 'description': '不可使用,仅供参考:Close price at 15:00'}
{'id': 937, 'data_set_name': '可以使用:anl10_roefq1_smart_ests_v2_2322', 'description': '不可使用,仅供参考:Smart estimates version 2 value for return on equity for Q1'}
{'id': 320672, 'data_set_name': '可以使用:pv87_2_roe_qf_matrix_all_chngratio_std', 'description': '不可使用,仅供参考:std value of all change ratio of Return On Equity *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
{'id': 7242, 'data_set_name': '可以使用:anl69_best_roe_median', 'description': '不可使用,仅供参考:Return on Equity Median'}
{'id': 322564, 'data_set_name': '可以使用:pv87_last_pricelast_low_correlation', 'description': '不可使用,仅供参考:Correlation between last price and low'}
{'id': 5996, 'data_set_name': '可以使用:anl44_best_roe_median', 'description': '不可使用,仅供参考:best roe median'}
{'id': 326356, 'data_set_name': '可以使用:pv98_pricesnap1530_open_153000', 'description': '不可使用,仅供参考:Daily open price'}
{'id': 80685, 'data_set_name': '可以使用:preferred_stock_outstanding_qty', 'description': '不可使用,仅供参考:Shares Outstanding - Preferred Stock Primary\r\nIssue'}
{'id': 324265, 'data_set_name': '可以使用:pv87_prv2_weightedavg60_group_css_stock_prices', 'description': '不可使用,仅供参考:60-day Weighted average of CSS score that represents the news sentiment of a given story by combining various sentiment analysis techniques for group Stock Prices'}
{'id': 324815, 'data_set_name': '可以使用:pv87_target_price_standard_deviation_scale', 'description': '不可使用,仅供参考:Scale of Target Price - Standard Deviation'}
{'id': 7776, 'data_set_name': '可以使用:chgprice', 'description': '不可使用,仅供参考:Difference in weekly price today and 4 weeks ago'}
{'id': 8903, 'data_set_name': '可以使用:est_q_roe_mean', 'description': '不可使用,仅供参考:Mean analyst estimate of return on equity in percent regarding the next quarter'}
{'id': 80683, 'data_set_name': '可以使用:preferred_stock_dividends', 'description': '不可使用,仅供参考:[Quarterly] Total Plan Service Cost'}
{'id': 6955, 'data_set_name': '可以使用:anl49_recentprice', 'description': '不可使用,仅供参考:The price of the common stock as of the close of business on the most recent Wednesday prior to the latest data base update.'}
{'id': 87547, 'data_set_name': '可以使用:fnd90_qes_gamef_icfroe_3y', 'description': '不可使用,仅供参考:Incremental Cash Flow Return over Equity over 3 Years'}
{'id': 326353, 'data_set_name': '可以使用:pv98_pricesnap1530_close_153000', 'description': '不可使用,仅供参考:Daily close price'}
{'id': 319215, 'data_set_name': '可以使用:pv52_yse_national_price_imprvd_shares', 'description': '不可使用,仅供参考:Price-Improved Shares'}
{'id': 324738, 'data_set_name': '可以使用:pv87_sell_price_median', 'description': '不可使用,仅供参考:No field description'}
{'id': 320690, 'data_set_name': '可以使用:pv87_2_roe_qf_matrix_p1_number', 'description': '不可使用,仅供参考:count number of estimates (once for one analyst) of Return On Equity'}
{'id': 324190, 'data_set_name': '可以使用:pv87_prv2_simpleavg60_group_event_sentiment_score_stock_prices', 'description': '不可使用,仅供参考:60-day Simple average of Event Sentiment Score for group Stock Prices'}
{'id': 85939, 'data_set_name': '可以使用:fnd72_pit_or_cr_q_accounts_payable_turnover_days', 'description': '不可使用,仅供参考:Number of days in the fiscal period as a multiple of Accounts Payable Turnover'}
{'id': 324811, 'data_set_name': '可以使用:pv87_target_price_estimate_std', 'description': '不可使用,仅供参考:Standard deviation of Target Price Estimate'}
{'id': 320644, 'data_set_name': '可以使用:pv87_2_roe_af_matrix_p1_b_chngratio_low', 'description': '不可使用,仅供参考:lowest value of all change ratio of Return On Equity *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
{'id': 317759, 'data_set_name': '可以使用:pv20_q_1_ard_common_stock', 'description': '不可使用,仅供参考:ARD Common Stock'}
{'id': 326379, 'data_set_name': '可以使用:pv98_pricesnapus_14_vwap_14', 'description': '不可使用,仅供参考:Volume weighted average price for the past 14 days'}
{'id': 1691, 'data_set_name': '可以使用:anl14_high_roe_fp3', 'description': '不可使用,仅供参考:The highest estimation of returns on equity - upcoming 3 quarters'}
{'id': 85938, 'data_set_name': '可以使用:fnd72_pit_or_cr_q_accounts_payable_turnover', 'description': '不可使用,仅供参考:Company purchases over average accounts payable'}
{'id': 8330, 'data_set_name': '可以使用:est_12m_roe_num', 'description': '不可使用,仅供参考:Number of analyst estimates of return on equity in percent regarding the next 4 quarters'}
{'id': 78152, 'data_set_name': '可以使用:option_exercise_price_2', 'description': '不可使用,仅供参考:Price at which options can be exercised.'}
{'id': 321321, 'data_set_name': '可以使用:pv87_daily_matrix_nonperiodic_target_price_consensus_mean_numanalysts', 'description': '不可使用,仅供参考:Number of analysts of Target Price Consensus Mean'}
{'id': 325872, 'data_set_name': '可以使用:pv87_webv2_simpleavg1_group_css_stock_prices', 'description': '不可使用,仅供参考:1-day Simple average of CSS score that represents the news sentiment of a given story by combining various sentiment analysis techniques for group Stock Prices'}
{'id': 325940, 'data_set_name': '可以使用:pv87_webv2_simpleavg20_group_event_sentiment_score_price_targets', 'description': '不可使用,仅供参考:20-day Simple average of Event Sentiment Score for group Price Targets'}
{'id': 326368, 'data_set_name': '可以使用:pv98_pricesnapus_13_high_13', 'description': '不可使用,仅供参考:Daily high price at 13:00'}
{'id': 81817, 'data_set_name': '可以使用:fnd28_stockdata_value_18266q', 'description': '不可使用,仅供参考:value of quarterly field: Trailing Twelve Months Dividends'}
{'id': 78709, 'data_set_name': '可以使用:fnd17_nprice', 'description': '不可使用,仅供参考:Price - closing or last bid'}
{'id': 7630, 'data_set_name': '可以使用:anl69_roe_best_fiscal_period_dt', 'description': '不可使用,仅供参考:Fiscal Period Date'}
{'id': 6639, 'data_set_name': '可以使用:index_period_starting_price', 'description': '不可使用,仅供参考:Index price at the start of the selected period.'}
{'id': 322559, 'data_set_name': '可以使用:pv87_last_priceinterval_twap_correlation', 'description': '不可使用,仅供参考:Correlation between interval price and twap'}
{'id': 8907, 'data_set_name': '可以使用:est_q_roe_median', 'description': '不可使用,仅供参考:Median analyst estimate of return on equity in percent regarding the next quarter'}
{'id': 326412, 'data_set_name': '可以使用:pv98_usa_pricesnap_14_high_14', 'description': '不可使用,仅供参考:Daily high price at 14:00'}
{'id': 325981, 'data_set_name': '可以使用:pv87_webv2_simpleavg60_group_css_price_targets', 'description': '不可使用,仅供参考:60-day Simple average of CSS score that represents the news sentiment of a given story by combining various sentiment analysis techniques for group Price Targets'}
{'id': 326046, 'data_set_name': '可以使用:pv87_webv2_weightedavg20_group_css_stock_prices', 'description': '不可使用,仅供参考:20-day Weighted average of CSS score that represents the news sentiment of a given story by combining various sentiment analysis techniques for group Stock Prices'}
{'id': 321901, 'data_set_name': '可以使用:pv87_es_roe_fy1_d1m_mean', 'description': '不可使用,仅供参考:FY1 ROE diffusion (up/down ratio), 1M'}
{'id': 322533, 'data_set_name': '可以使用:pv87_last_highlast_lowlast_price_ultosc', 'description': '不可使用,仅供参考:Ultimate Oscillator using last high price, last low price'}
{'id': 5027, 'data_set_name': '可以使用:anl16_sranaeststock', 'description': '不可使用,仅供参考:srana estimate'}
{'id': 8333, 'data_set_name': '可以使用:est_12m_roe_num_4wks_ago', 'description': '不可使用,仅供参考:Number of analyst estimates of return on equity in percent regarding the next 4 quarters, where old and new estimates were made in the past 4 weeks'}
{'id': 320657, 'data_set_name': '可以使用:pv87_2_roe_af_matrix_p1_chngratio_mean', 'description': '不可使用,仅供参考:mean value of all change ratio of Return On Equity *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
{'id': 324789, 'data_set_name': '可以使用:pv87_stock_sellfundnum', 'description': '不可使用,仅供参考:Number of funds sell this instrument'}
{'id': 1403, 'data_set_name': '可以使用:management_ethics_sector_percentile', 'description': '不可使用,仅供参考:Percentile ranking within sector peer group for management standards and ethics.'}
{'id': 953, 'data_set_name': '可以使用:anl10_roefy2_pred_surps_v0_2296', 'description': '不可使用,仅供参考:Predicted surprise version 0 for return on equity for FY2 (calculated as (smart_ests - consensus)/consensus)'}
{'id': 326406, 'data_set_name': '可以使用:pv98_usa_pricesnap_13_low_13', 'description': '不可使用,仅供参考:Low price at 13:00'}
{'id': 934, 'data_set_name': '可以使用:anl10_roefq1_pred_surps_v2_2326', 'description': '不可使用,仅供参考:Predicted surprise version 2 for return on equity for Q1 (calculated as (smart_ests - consensus)/consensus)'}
{'id': 1826, 'data_set_name': '可以使用:anl14_low_roe_fp3', 'description': '不可使用,仅供参考:The Lowest Estimation of Returns on Equity - Upcoming 3 Quarters'}
{'id': 320652, 'data_set_name': '可以使用:pv87_2_roe_af_matrix_p1_b_mean', 'description': '不可使用,仅供参考:mean value of all analysts estimates of Return On Equity'}
{'id': 85599, 'data_set_name': '可以使用:fnd72_pit_or_bs_q_bs_amt_of_tsy_stock', 'description': '不可使用,仅供参考:Amount of Treasury Shares'}
{'id': 321902, 'data_set_name': '可以使用:pv87_es_roe_fy1_d3m_mean', 'description': '不可使用,仅供参考:FY1 ROE diffusion (up/down ratio), 3M'}
{'id': 78423, 'data_set_name': '可以使用:fnd14_latestqu_price_close', 'description': '不可使用,仅供参考:Closing price'}
{'id': 8332, 'data_set_name': '可以使用:est_12m_roe_num_3mth_ago', 'description': '不可使用,仅供参考:Number of analyst estimates of return on equity in percent regarding the next 4 quarters, made in the past 3 months'}
{'id': 325361, 'data_set_name': '可以使用:pv87_v2_weightedavg20_group_css_price_targets', 'description': '不可使用,仅供参考:20-day Weighted average of CSS score that represents the news sentiment of a given story by combining various sentiment analysis techniques for group Price Targets'}
{'id': 78193, 'data_set_name': '可以使用:wealth_sensitivity_to_stock_2', 'description': '不可使用,仅供参考:Change in director’s wealth for each 1% change in stock price (alternate).'}
{'id': 325243, 'data_set_name': '可以使用:pv87_v2_simpleavg20_group_event_sentiment_score_price_targets', 'description': '不可使用,仅供参考:20-day Simple average of Event Sentiment Score for group Price Targets'}
{'id': 322543, 'data_set_name': '可以使用:pv87_last_price_first', 'description': '不可使用,仅供参考:First of price'}
{'id': 326359, 'data_set_name': '可以使用:pv98_pricesnapus_12_cap_12', 'description': '不可使用,仅供参考:Market capitalization at 12:00'}
{'id': 6992, 'data_set_name': '可以使用:anl49_vector_35projected35yearlowpricetarget', 'description': '不可使用,仅供参考:Projected average annual target price range 3 to 5 years hence is based on the standard deviation of historic weekly percent price changes for 52 weeks applied to the average annual price projected 3 to 5 years from now (the mid-point of the range). The 3-5 year average price is determined by applying a normalized" P/E ratio to projected 3-5 year earnings per share."'}
{'id': 326397, 'data_set_name': '可以使用:pv98_usa_pricesnap_12_close_12', 'description': '不可使用,仅供参考:Close price at 12:00'}
{'id': 323924, 'data_set_name': '可以使用:pv87_p_sell_price_median', 'description': '不可使用,仅供参考:Median of selling price'}
{'id': 6651, 'data_set_name': '可以使用:most_recent_market_price', 'description': '不可使用,仅供参考:The most recent price of the security in the trade idea.'}
{'id': 324795, 'data_set_name': '可以使用:pv87_supplychainmanagementindustrypercentile_insight_mean', 'description': '不可使用,仅供参考:Long-term score of Supply Chain Management topic'}
{'id': 320680, 'data_set_name': '可以使用:pv87_2_roe_qf_matrix_p1_chngratio_low', 'description': '不可使用,仅供参考:lowest value of all change ratio of Return On Equity *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
{'id': 325312, 'data_set_name': '可以使用:pv87_v2_simpleavg60_group_event_sentiment_score_price_targets', 'description': '不可使用,仅供参考:60-day Simple average of Event Sentiment Score for group Price Targets'}
{'id': 326419, 'data_set_name': '可以使用:pv98_usa_pricesnap_15_high_15', 'description': '不可使用,仅供参考:High price snapshot for a 15-minute interval'}
{'id': 322744, 'data_set_name': '可以使用:pv87_num_of_analysts_high_price_volatility_in_consensus_scale', 'description': '不可使用,仅供参考:Scale of # of Analysts High Price Volatility - (In-Consensus)'}
{'id': 324785, 'data_set_name': '可以使用:pv87_stock_buypos', 'description': '不可使用,仅供参考:Buy position'}
{'id': 325174, 'data_set_name': '可以使用:pv87_v2_expavg60_group_event_sentiment_score_price_targets', 'description': '不可使用,仅供参考:60-day Exponential average of Event Sentiment Score for group Price Targets'}
{'id': 5730, 'data_set_name': '可以使用:anl40_netturnoverrate', 'description': '不可使用,仅供参考:TotalChanges / (OldCount + NewCount). No record before 20160729.'}
{'id': 78720, 'data_set_name': '可以使用:fnd17_price2bk', 'description': '不可使用,仅供参考:Price to Book - most recent quarter'}
{'id': 6281, 'data_set_name': '可以使用:anl44_orig_en_roe_value', 'description': '不可使用,仅供参考:orig en roe value'}
{'id': 5594, 'data_set_name': '可以使用:max_stock_option_expense_guidance', 'description': '不可使用,仅供参考:Stock option expense - Maximum guidance value for the annual period'}
{'id': 78722, 'data_set_name': '可以使用:fnd17_priceavg150day', 'description': '不可使用,仅供参考:Average price of the last 150 days'}
{'id': 8904, 'data_set_name': '可以使用:est_q_roe_mean_28d', 'description': '不可使用,仅供参考:Mean analyst estimate of return on equity in percent regarding the next quarter, made in the last 28 days'}
{'id': 326398, 'data_set_name': '可以使用:pv98_usa_pricesnap_12_high_12', 'description': '不可使用,仅供参考:Daily high price at 12:00'}
{'id': 7235, 'data_set_name': '可以使用:anl69_best_roe', 'description': '不可使用,仅供参考:Return on Equity'}
{'id': 326411, 'data_set_name': '可以使用:pv98_usa_pricesnap_14_close_14', 'description': '不可使用,仅供参考:Close price at 14:00'}
{'id': 325903, 'data_set_name': '可以使用:pv87_webv2_simpleavg1_group_nip_stock_prices', 'description': '不可使用,仅供参考:1-day Simple average of NIP score that represents the degree of impact a news flash has on the market over the following two-hour period for group Stock Prices'}
{'id': 86156, 'data_set_name': '可以使用:fnd72_pit_or_is_a_is_expense_stock_based_comp', 'description': '不可使用,仅供参考:The expense for stock-based compensation'}
{'id': 2102, 'data_set_name': '可以使用:anl14_median_roe_fp4', 'description': '不可使用,仅供参考:Median of estimations of Returns on Equity - upcoming 4 quarters'}
{'id': 8915, 'data_set_name': '可以使用:est_q_roe_raisednum_1mth', 'description': '不可使用,仅供参考:Number of raised analyst estimates of return on equity in percent regarding the next quarter, compared to last monthly update'}
{'id': 6663, 'data_set_name': '可以使用:previous_closing_security_price', 'description': '不可使用,仅供参考:Last available closing price for the security.'}
{'id': 86012, 'data_set_name': '可以使用:fnd72_pit_or_cr_q_geo_grow_roe', 'description': '不可使用,仅供参考:Compound 5-year growth rate in return on equity'}
{'id': 1827, 'data_set_name': '可以使用:anl14_low_roe_fp4', 'description': '不可使用,仅供参考:The lowest estimation of returns on equity - upcoming 4 quarters'}
{'id': 326361, 'data_set_name': '可以使用:pv98_pricesnapus_12_high_12', 'description': '不可使用,仅供参考:High price snapshot for a 12-minute interval'}
{'id': 322556, 'data_set_name': '可以使用:pv87_last_price_std', 'description': '不可使用,仅供参考:Standard deviation of price'}
{'id': 6623, 'data_set_name': '可以使用:daily_price_change_percent', 'description': "不可使用,仅供参考:The percentage change in price since the previous day's close."}
{'id': 319109, 'data_set_name': '可以使用:pv52_asdaq_price_imprvd_avg_amt', 'description': '不可使用,仅供参考:Price Improved Average Amount (in USD)'}
{'id': 8340, 'data_set_name': '可以使用:est_12m_roe_std_4wks_ago', 'description': '不可使用,仅供参考:Standard deviation of the analyst estimate of return on equity in percent regarding the next 4 quarters, made in the past 4 weeks'}
{'id': 78146, 'data_set_name': '可以使用:option_award_stock_price', 'description': '不可使用,仅供参考:Stock price at the time of the option award.'}
{'id': 88104, 'data_set_name': '可以使用:oth401_qes_gamef_icfroe_3y', 'description': '不可使用,仅供参考:Incremental Cash Flow Return over Equity over 3 Years'}
{'id': 86715, 'data_set_name': '可以使用:fnd72_s_pit_or_cf_q_cf_incr_cap_stock', 'description': '不可使用,仅供参考:Increase in Capital Stocks'}
{'id': 8331, 'data_set_name': '可以使用:est_12m_roe_num_28d', 'description': '不可使用,仅供参考:Number of analyst estimates of return on equity in percent regarding the next 4 quarters, made in the last 28 days'}
{'id': 8910, 'data_set_name': '可以使用:est_q_roe_num', 'description': '不可使用,仅供参考:Number of analyst estimates of return on equity in percent regarding the next quarter'}
{'id': 6965, 'data_set_name': '可以使用:anl49_standarddeviationofpricechange', 'description': '不可使用,仅供参考:Measure of total volatility or risk in a stock.'}
{'id': 320651, 'data_set_name': '可以使用:pv87_2_roe_af_matrix_p1_b_low', 'description': '不可使用,仅供参考:lowest value of all analysts estimates of Return On Equity'}
{'id': 5029, 'data_set_name': '可以使用:anl16_sranarecstock1through5t24', 'description': '不可使用,仅供参考:SRANA recommendations that range from 1 to 5 (trailing 24 months)'}
{'id': 80828, 'data_set_name': '可以使用:stockholders_other_comprehensive_assets', 'description': '不可使用,仅供参考:Other comprehensive assets attributable to stockholders.'}
{'id': 5030, 'data_set_name': '可以使用:anl16_sranarecstockt12', 'description': '不可使用,仅供参考:srana recommendations that range from 1 to 100 (trailing 12 months).'}
{'id': 6658, 'data_set_name': '可以使用:period_closing_price', 'description': '不可使用,仅供参考:The closing price at the end of the selected period.'}
{'id': 5028, 'data_set_name': '可以使用:anl16_sranarecstock1through5t12', 'description': '不可使用,仅供参考:SRANA recommendations that range from 1 to 5 (trailing 12 months)'}
{'id': 78412, 'data_set_name': '可以使用:fnd14_latestfy_price_close', 'description': '不可使用,仅供参考:Closing price'}
{'id': 1696, 'data_set_name': '可以使用:anl14_high_roe_fy3', 'description': '不可使用,仅供参考:The Highest Estimation of Returns on Equity - upcoming 3 years'}
{'id': 324809, 'data_set_name': '可以使用:pv87_target_price_estimate_number', 'description': '不可使用,仅供参考:Number of analysts of Target Price Estimate'}
{'id': 322562, 'data_set_name': '可以使用:pv87_last_priceinterval_vwap_correlation', 'description': '不可使用,仅供参考:Correlation between interval price and vwap'}
{'id': 81816, 'data_set_name': '可以使用:fnd28_stockdata_value_18265q', 'description': '不可使用,仅供参考:value of quarterly field: Trailing Twelve Months Cash Flow per Share'}
{'id': 2378, 'data_set_name': '可以使用:anl14_stddev_roe_fy2', 'description': '不可使用,仅供参考:Standard deviation of estimations of returns on equity - upcoming 2 years'}
{'id': 8323, 'data_set_name': '可以使用:est_12m_roe_mean', 'description': '不可使用,仅供参考:Mean analyst estimate of return on equity in percent regarding the next 4 quarters'}
{'id': 8901, 'data_set_name': '可以使用:est_q_roe_lowerednum_1mth', 'description': '不可使用,仅供参考:Count of unique IDs of industry participants. Industry stands for an aggregate view of all equity clearance activity for the date, symbol, and transaction type in question.'}
{'id': 2104, 'data_set_name': '可以使用:anl14_median_roe_fy1', 'description': '不可使用,仅供参考:Median of Estimations of Returns on Equity - Upcoming Year'}
{'id': 947, 'data_set_name': '可以使用:anl10_roefy1_pred_surps_v1_2294', 'description': '不可使用,仅供参考:Predicted surprise version 1 for return on equity for FY1 (calculated as (smart_ests - consensus)/consensus)'}
{'id': 78008, 'data_set_name': '可以使用:average_other_board_tenure', 'description': '不可使用,仅供参考:Average time the director serves on other quoted boards.'}
{'id': 325662, 'data_set_name': '可以使用:pv87_waterandwastewatermanagement_pulse_mean', 'description': '不可使用,仅供参考:Short-term score of Water And Wastewater Management topic'}
{'id': 323925, 'data_set_name': '可以使用:pv87_p_sell_price_std', 'description': '不可使用,仅供参考:Standard deviation of selling price'}
{'id': 322179, 'data_set_name': '可以使用:pv87_interval_vwap_modeintegerprice', 'description': '不可使用,仅供参考:Mode integer price of vwap'}
{'id': 326416, 'data_set_name': '可以使用:pv98_usa_pricesnap_14_vwap_14', 'description': '不可使用,仅供参考:Volume weighted average price for 14 days'}
{'id': 8900, 'data_set_name': '可以使用:est_q_roe_lowered_1wk', 'description': '不可使用,仅供参考:Count of unique IDs of industry participants. Industry stands for an aggregate view of all equity clearance activity for the date, symbol, and transaction type in question.'}
{'id': 83217, 'data_set_name': '可以使用:fnd3_A_niccommonstockholders', 'description': '不可使用,仅供参考:Annual Net Income Attributable to Common Stockholders'}
{'id': 7628, 'data_set_name': '可以使用:anl69_roe_best_eeps_cur_yr', 'description': '不可使用,仅供参考:Est Earnings per share Curr Year'}
{'id': 325658, 'data_set_name': '可以使用:pv87_wasteandhazardousmaterialsmanagementindustrypercentile_insight_mean', 'description': '不可使用,仅供参考:Long-term score of Waste And Hazardous Materials Management topic'}
{'id': 85692, 'data_set_name': '可以使用:fnd72_pit_or_cf_a_cf_tax_benefit_frm_stock_options', 'description': '不可使用,仅供参考:Tax Benefit from Stock Options'}
{'id': 323975, 'data_set_name': '可以使用:pv87_price_volatility_estimate_number', 'description': '不可使用,仅供参考:Number of analysts of Price Volatility Estimate'}
{'id': 85751, 'data_set_name': '可以使用:fnd72_pit_or_cr_a_accounts_payable_turnover_days', 'description': '不可使用,仅供参考:Number of days in the fiscal period as a multiple of Accounts Payable Turnover'}
{'id': 326386, 'data_set_name': '可以使用:pv98_pricesnapus_15_vwap_15', 'description': '不可使用,仅供参考:Volume weighted average price at 15:00'}
{'id': 316630, 'data_set_name': '可以使用:pv103_o_price', 'description': '不可使用,仅供参考:Open/Close auction indicative price'}
{'id': 85750, 'data_set_name': '可以使用:fnd72_pit_or_cr_a_accounts_payable_turnover', 'description': '不可使用,仅供参考:Company purchases over average accounts payable'}
{'id': 78877, 'data_set_name': '可以使用:fnd17_ttmroepct', 'description': '不可使用,仅供参考:Return on average equity - trailing 12 month'}
{'id': 325787, 'data_set_name': '可以使用:pv87_webv2_expavg20_group_nip_stock_prices', 'description': '不可使用,仅供参考:20-day Exponential average of NIP score that represents the degree of impact a news flash has on the market over the following two-hour period for group Stock Prices'}
{'id': 8906, 'data_set_name': '可以使用:est_q_roe_mean_4wks_ago', 'description': '不可使用,仅供参考:Mean analyst estimate of return on equity in percent regarding the next quarter, made in the past 4 weeks'}
{'id': 325656, 'data_set_name': '可以使用:pv87_wasteandhazardousmaterialsmanagement_momentum_mean', 'description': '不可使用,仅供参考:Trailing 12m score of Waste And Hazardous Materials Management topic'}
{'id': 322621, 'data_set_name': '可以使用:pv87_matrix_nonperiodic_target_price_consensus_mean_numanalysts', 'description': '不可使用,仅供参考:Number of analysts of Target Price Consensus Mean'}
{'id': 320641, 'data_set_name': '可以使用:pv87_2_roe_af_matrix_all_median', 'description': '不可使用,仅供参考:median value of all analysts estimates of Return On Equity'}
{'id': 79017, 'data_set_name': '可以使用:fn_entity_common_stock_shares_out_a', 'description': "不可使用,仅供参考:Indicate number of shares or other units outstanding of each of registrant's classes of capital or common stock or other ownership interests, if and as stated on cover of related periodic report. Where multiple classes or units exist define each class/interest by adding class of stock items such as Common Class A [Member], Common Class B [Member] or Partnership Interest [Member] onto the Instrument [Domain] of the Entity Listings, Instrument."}
{'id': 323918, 'data_set_name': '可以使用:pv87_p_buy_price_count', 'description': '不可使用,仅供参考:Count of buying price'}
{'id': 8894, 'data_set_name': '可以使用:est_q_roe_high', 'description': '不可使用,仅供参考:Highest analyst estimate of return on equity in percent regarding the next quarter'}
{'id': 321040, 'data_set_name': '可以使用:pv87_buy_price_mean', 'description': '不可使用,仅供参考:No field description'}
{'id': 319194, 'data_set_name': '可以使用:pv52_yse_chicago_price_imprvd_shares', 'description': '不可使用,仅供参考:Price-Improved Shares'}
{'id': 321776, 'data_set_name': '可以使用:pv87_energymanagement_pulse_mean', 'description': '不可使用,仅供参考:Short-term score of Energy Management topic'}
{'id': 2379, 'data_set_name': '可以使用:anl14_stddev_roe_fy3', 'description': '不可使用,仅供参考:Standard Deviation of Estimations of Returns on Equity - Upcoming 3 Years'}
{'id': 2235, 'data_set_name': '可以使用:anl14_numofests_roe_fp3', 'description': '不可使用,仅供参考:Num of estimations of returns on equity - upcoming 3 quarters'}
{'id': 325844, 'data_set_name': '可以使用:pv87_webv2_expavg60_group_nip_price_targets', 'description': '不可使用,仅供参考:60-day Exponential average of NIP score that represents the degree of impact a news flash has on the market over the following two-hour period for group Price Targets'}
{'id': 321153, 'data_set_name': '可以使用:pv87_consensus_price_volatility_scale', 'description': '不可使用,仅供参考:Scale of Consensus Price Volatility'}
{'id': 324808, 'data_set_name': '可以使用:pv87_target_price_estimate_median', 'description': '不可使用,仅供参考:Median of Target Price Estimate'}
{'id': 317794, 'data_set_name': '可以使用:pv20_q_ardr_common_stock', 'description': '不可使用,仅供参考:ARD Ref Common Stock'}
{'id': 324634, 'data_set_name': '可以使用:pv87_roe_stab_mean', 'description': '不可使用,仅供参考:ROE stability, 5Y'}
{'id': 6840, 'data_set_name': '可以使用:anl49_backfill_inventoryturnoverindicator', 'description': '不可使用,仅供参考:inventory turnover indicator'}
{'id': 324645, 'data_set_name': '可以使用:pv87_s_buy_price_mean', 'description': '不可使用,仅供参考:Mean of buying price'}
{'id': 326137, 'data_set_name': '可以使用:pv87_webv2_weightedavg60_group_nip_price_targets', 'description': '不可使用,仅供参考:60-day Weighted average of NIP score that represents the degree of impact a news flash has on the market over the following two-hour period for group Price Targets'}
{'id': 7633, 'data_set_name': '可以使用:anl69_roe_expected_report_period', 'description': '不可使用,仅供参考:Expected Earnings Report Period'}
{'id': 7635, 'data_set_name': '可以使用:anl69_roe_latest_ann_dt_qtrly', 'description': '不可使用,仅供参考:Latest Announcement Date Quarterly'}
{'id': 321323, 'data_set_name': '可以使用:pv87_daily_matrix_nonperiodic_target_price_consensus_mean_numdown', 'description': '不可使用,仅供参考:Number of down revisions of Target Price Consensus Mean'}
{'id': 326396, 'data_set_name': '可以使用:pv98_usa_pricesnap_12_cap_12', 'description': '不可使用,仅供参考:Market capitalization at 12:00'}
{'id': 6666, 'data_set_name': '可以使用:previous_market_close_price', 'description': '不可使用,仅供参考:The last available closing price for the security.'}
{'id': 324807, 'data_set_name': '可以使用:pv87_target_price_estimate_mean', 'description': '不可使用,仅供参考:Mean of Target Price Estimate'}
{'id': 321327, 'data_set_name': '可以使用:pv87_daily_matrix_nonperiodic_target_price_consensus_mean_numup', 'description': '不可使用,仅供参考:Number of up revisions of Target Price Consensus Mean'}
{'id': 86681, 'data_set_name': '可以使用:fnd72_s_pit_or_cf_a_cf_incr_cap_stock', 'description': '不可使用,仅供参考:Increase in Capital Stocks'}
{'id': 325847, 'data_set_name': '可以使用:pv87_webv2_expavg60_group_nip_stock_prices', 'description': '不可使用,仅供参考:60-day Exponential average of NIP score that represents the degree of impact a news flash has on the market over the following two-hour period for group Stock Prices'}
{'id': 8338, 'data_set_name': '可以使用:est_12m_roe_std_28d', 'description': '不可使用,仅供参考:Standard deviation of the analyst estimate of return on equity in percent regarding the next 4 quarters, made in the last 28 days'}
{'id': 2373, 'data_set_name': '可以使用:anl14_stddev_roe_fp2', 'description': '不可使用,仅供参考:Standard Deviation of Estimations of Returns on Equity - Upcoming 2 Quarters'}
{'id': 8896, 'data_set_name': '可以使用:est_q_roe_high_4wks_ago', 'description': '不可使用,仅供参考:Highest analyst estimate of return on equity in percent regarding the next quarter, made in the past 4 weeks'}
{'id': 5990, 'data_set_name': '可以使用:anl44_best_roe_4wk_chg', 'description': '不可使用,仅供参考:best roe 4wk chg'}
{'id': 320684, 'data_set_name': '可以使用:pv87_2_roe_qf_matrix_p1_chngratio_std', 'description': '不可使用,仅供参考:std value of all change ratio of Return On Equity *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
{'id': 1828, 'data_set_name': '可以使用:anl14_low_roe_fp5', 'description': '不可使用,仅供参考:The lowest estimation of returns on equity - upcoming 5 quarters'}
{'id': 78192, 'data_set_name': '可以使用:wealth_sensitivity_to_stock', 'description': '不可使用,仅供参考:Change in director’s wealth for each 1% change in stock price.'}
{'id': 322628, 'data_set_name': '可以使用:pv87_matrix_nonperiodic_target_price_consensus_mean_numupunfiltered', 'description': '不可使用,仅供参考:Number of up revisions of Target Price Consensus Mean'}
{'id': 322546, 'data_set_name': '可以使用:pv87_last_price_max', 'description': '不可使用,仅供参考:Max of price'}
{'id': 80827, 'data_set_name': '可以使用:stock_option_compensation_fair_value', 'description': '不可使用,仅供参考:Fair value of stock option compensation recognized.'}
{'id': 323923, 'data_set_name': '可以使用:pv87_p_sell_price_mean', 'description': '不可使用,仅供参考:Mean of selling price'}
{'id': 326354, 'data_set_name': '可以使用:pv98_pricesnap1530_high_153000', 'description': '不可使用,仅供参考:Daily high price'}
{'id': 78949, 'data_set_name': '可以使用:fn_business_combination_purchase_price_a', 'description': '不可使用,仅供参考:Business Combination, Purchase Price'}
{'id': 6591, 'data_set_name': '可以使用:anl45_stock_ret_per', 'description': '不可使用,仅供参考:Net total return from all ideas since previous market close'}
{'id': 322537, 'data_set_name': '可以使用:pv87_last_highlast_lowlast_pricelast_volume_stochf', 'description': '不可使用,仅供参考:Stochastic Fast using last high price, last low price, last price'}
{'id': 80825, 'data_set_name': '可以使用:stock_dividends_payable', 'description': '不可使用,仅供参考:Dividends payable in the form of stock.'}
{'id': 323972, 'data_set_name': '可以使用:pv87_price_volatility_estimate_low', 'description': '不可使用,仅供参考:Low of Price Volatility Estimate'}
{'id': 324648, 'data_set_name': '可以使用:pv87_s_sell_price_count', 'description': '不可使用,仅供参考:Count of selling price'}
{'id': 85442, 'data_set_name': '可以使用:fnd72_a2_roa_to_roe', 'description': '不可使用,仅供参考:Return on assets as a percentage of return on equity'}
{'id': 320661, 'data_set_name': '可以使用:pv87_2_roe_af_matrix_p1_dts', 'description': '不可使用,仅供参考:std value of all analysts estimates of Return On Equity'}
{'id': 942, 'data_set_name': '可以使用:anl10_roefq2_smart_ests_v0_2302', 'description': '不可使用,仅供参考:Smart estimates version 0 value for return on equity for Q2'}
{'id': 86523, 'data_set_name': '可以使用:fnd72_s_pit_or_bs_q_1_bs_amt_of_tsy_stock', 'description': '不可使用,仅供参考:Amount of Treasury Shares'}
{'id': 8908, 'data_set_name': '可以使用:est_q_roe_median_3mth_ago', 'description': '不可使用,仅供参考:Median analyst estimate of return on equity in percent regarding the next quarter, made in past 3 months'}
{'id': 324805, 'data_set_name': '可以使用:pv87_target_price_estimate_high', 'description': '不可使用,仅供参考:High of Target Price Estimate'}
{'id': 6343, 'data_set_name': '可以使用:anl44_roe_coveredby', 'description': '不可使用,仅供参考:ROE d0 coveredby'}
{'id': 320634, 'data_set_name': '可以使用:pv87_2_roe_af_matrix_all_chngratio_median', 'description': '不可使用,仅供参考:median value of all change ratio of Return On Equity *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
{'id': 78731, 'data_set_name': '可以使用:fnd17_ptmroepct', 'description': '不可使用,仅供参考:Return on average equity - prior trailing 12 month'}
{'id': 964, 'data_set_name': '可以使用:anl10_roepast_det_excflag', 'description': '不可使用,仅供参考:Exclusion flag for return on equity estimates'}
{'id': 320837, 'data_set_name': '可以使用:pv87_accidentandsafetymanagementindustrypercentile_insight_mean', 'description': '不可使用,仅供参考:Long-term score of Accident And Safety Management topic'}
{'id': 324796, 'data_set_name': '可以使用:pv87_supplychainmanagementindustrypercentile_momentum_mean', 'description': '不可使用,仅供参考:Trailing 12m score of Supply Chain Management topic'}
{'id': 322626, 'data_set_name': '可以使用:pv87_matrix_nonperiodic_target_price_consensus_mean_numnochangeunfiltered', 'description': '不可使用,仅供参考:Number of no change revisions (unfiltered) of Target Price Consensus Mean'}
{'id': 5843, 'data_set_name': '可以使用:anl44_2_roe_lastactccy', 'description': '不可使用,仅供参考:roe lastactccy'}
{'id': 5994, 'data_set_name': '可以使用:anl44_best_roe_hi', 'description': '不可使用,仅供参考:best roe hi'}
{'id': 325900, 'data_set_name': '可以使用:pv87_webv2_simpleavg1_group_nip_price_targets', 'description': '不可使用,仅供参考:1-day Simple average of NIP score that represents the degree of impact a news flash has on the market over the following two-hour period for group Price Targets'}
{'id': 1829, 'data_set_name': '可以使用:anl14_low_roe_fy1', 'description': '不可使用,仅供参考:The Lowest Estimation of Returns on Equity - Upcoming Year'}
{'id': 6659, 'data_set_name': '可以使用:period_ending_security_price', 'description': '不可使用,仅供参考:Closing price of the security at the end of the selected period.'}
{'id': 322555, 'data_set_name': '可以使用:pv87_last_price_sma', 'description': '不可使用,仅供参考:Simple Moving Average using'}
{'id': 84247, 'data_set_name': '可以使用:fnd31_qsg5additionalfactor3_backfilled_yoychgroeart', 'description': '不可使用,仅供参考:Yearly Change in ROE - Arithmetic Difference. It is defined as the yearly arithmetic change in the ratio of trailing-twelve-month earnings before extraordinary items divided by current total book equity.'}
{'id': 322547, 'data_set_name': '可以使用:pv87_last_price_median', 'description': '不可使用,仅供参考:Median of price'}
{'id': 321322, 'data_set_name': '可以使用:pv87_daily_matrix_nonperiodic_target_price_consensus_mean_numanalystsunfiltered', 'description': '不可使用,仅供参考:Number of analysts (unfiltered) of Target Price Consensus Mean'}
{'id': 7627, 'data_set_name': '可以使用:anl69_roe_best_cur_fiscal_year_period', 'description': '不可使用,仅供参考:Current Fiscal Year Period Date'}
{'id': 322734, 'data_set_name': '可以使用:pv87_num_of_analysts_above_average_price_volatility_in_consensus_scale', 'description': '不可使用,仅供参考:Scale of # of Analysts Above Average Price Volatility - (In-Consensus)'}
{'id': 325404, 'data_set_name': '可以使用:pv87_v2_weightedavg20_group_nip_stock_prices', 'description': '不可使用,仅供参考:20-day Weighted average of NIP score that represents the degree of impact a news flash has on the market over the following two-hour period for group Stock Prices'}
{'id': 325811, 'data_set_name': '可以使用:pv87_webv2_expavg60_group_css_stock_prices', 'description': '不可使用,仅供参考:60-day Exponential average of CSS score that represents the news sentiment of a given story by combining various sentiment analysis techniques for group Stock Prices'}
{'id': 322534, 'data_set_name': '可以使用:pv87_last_highlast_lowlast_price_willr', 'description': "不可使用,仅供参考:Williams' %R using last high price, last low price"}
{'id': 7767, 'data_set_name': '可以使用:act_q_roe_surprisenum', 'description': '不可使用,仅供参考:Number of estimates used for surprise calculation of actual return on equity in percent regarding the last quarter'}
{'id': 6667, 'data_set_name': '可以使用:price_change_percent_today', 'description': "不可使用,仅供参考:Percentage change in price since the previous day's close."}
{'id': 324061, 'data_set_name': '可以使用:pv87_prv2_expavg60_group_event_sentiment_score_stock_prices', 'description': '不可使用,仅供参考:60-day Exponential average of Event Sentiment Score for group Stock Prices'}
{'id': 321907, 'data_set_name': '可以使用:pv87_es_roe_ntm_r3m_mean', 'description': '不可使用,仅供参考:NTM ROE revision, 3M'}
{'id': 7625, 'data_set_name': '可以使用:anl69_roe_best_crncy_iso', 'description': '不可使用,仅供参考:Currency (ISO)'}
{'id': 6862, 'data_set_name': '可以使用:anl49_backfill_pricegrowthpersistence', 'description': '不可使用,仅供参考:It is the measurement of the consistency of relative price growth. Using each year of the past 10 (or fewer) as a base, a count is made of the number of subsequent years in which relative price of the stock was higher than the base period. The sum of these counts is the basis for the Index. Growth Persistence Indexes range from 100 (highest) to 5 (lowest).'}
{'id': 324177, 'data_set_name': '可以使用:pv87_prv2_simpleavg60_group_css_stock_prices', 'description': '不可使用,仅供参考:60-day Simple average of CSS score that represents the news sentiment of a given story by combining various sentiment analysis techniques for group Stock Prices'}
{'id': 8318, 'data_set_name': '可以使用:est_12m_roe_low_3mth_ago', 'description': '不可使用,仅供参考:Lowest analyst estimate of return on equity in percent regarding the next 4 quarters, made in the past 3 months'}
{'id': 78165, 'data_set_name': '可以使用:role_tenure_duration', 'description': "不可使用,仅供参考:Duration of the director's current role."}
{'id': 5743, 'data_set_name': '可以使用:anl40_turnoverrate', 'description': '不可使用,仅供参考:MoveOut / (OldCount + NewCount). No record before 20160729.'}
{'id': 324810, 'data_set_name': '可以使用:pv87_target_price_estimate_scale', 'description': '不可使用,仅供参考:Scale of Target Price Estimate'}
{'id': 85706, 'data_set_name': '可以使用:fnd72_pit_or_cf_q_cf_decr_cap_stock', 'description': '不可使用,仅供参考:Always negative. Repurchase of common stock, common stock warrants, or other common stock equivalents. Includes redemption of preferred share capital. Includes purchase of treasury stock. Index'}
{'id': 325335, 'data_set_name': '可以使用:pv87_v2_simpleavg60_group_nip_stock_prices', 'description': '不可使用,仅供参考:60-day Simple average of NIP score that represents the degree of impact a news flash has on the market over the following two-hour period for group Stock Prices'}
{'id': 316995, 'data_set_name': '可以使用:pv20_a2_ardr_common_stock', 'description': '不可使用,仅供参考:ARD Ref Common Stock'}
{'id': 78647, 'data_set_name': '可以使用:fnd17_chpctpricewtd', 'description': '不可使用,仅供参考:Week to Date price change in percentage'}
{'id': 322551, 'data_set_name': '可以使用:pv87_last_price_numintervalsincelow', 'description': '不可使用,仅供参考:Number of intervals since last low of price'}
{'id': 1693, 'data_set_name': '可以使用:anl14_high_roe_fp5', 'description': '不可使用,仅供参考:The Highest Estimation of Returns on Equity - Upcoming 5 Quarters'}
{'id': 320688, 'data_set_name': '可以使用:pv87_2_roe_qf_matrix_p1_mean', 'description': '不可使用,仅供参考:mean value of all analysts estimates of Return On Equity'}
{'id': 79290, 'data_set_name': '可以使用:acquisition_purchase_price', 'description': '不可使用,仅供参考:Total price paid for acquisitions during the period.'}
{'id': 78156, 'data_set_name': '可以使用:option_strike_price', 'description': '不可使用,仅供参考:Price at which options can be exercised.'}
========================= 数据字段结束 =======================================
以上数据字段和操作符, 按照Description说明组合, 但是每一个 alpha 组合的使用的数据字段和操作符不要过于集中, 在符合语法的情况下, 多尝试不同的组合
你再检查一下, 如果你使用了
Operator abs does not support event inputs
Operator ts_mean does not support event inputs
Operator ts_scale does not support event inputs
Operator add does not support event inputs
Operator sign does not support event inputs
Operator greater does not support event inputs
Operator ts_av_diff does not support event inputs
Operator ts_quantile does not support event inputs
Operator ts_arg_min does not support event inputs
Operator divide does not support event inputs
Operator ts_corr does not support event inputs
Operator ts_decay_linear does not support event inputs
Operator ts_sum does not support event inputs
Operator ts_delay does not support event inputs
Operator ts_arg_max does not support event inputs
Operator ts_std_dev does not support event inputs
Operator ts_regression does not support event inputs
Operator ts_backfill does not support event inputs
Operator signed_power does not support event inputs
Operator ts_product does not support event inputs
Operator ts_zscore does not support event inputs
Operator group_rank does not support event inputs
Operator subtract does not support event inputs
Operator ts_delta does not support event inputs
Operator ts_rank does not support event inputs
Operator ts_count_nans does not support event inputs
Operator ts_covariance does not support event inputs
Operator multiply does not support event inputs
Operator if_else does not support event inputs
Operator group_neutralize does not support event inputs
Operator group_zscore does not support event inputs
Operator winsorize does not support event inputs
注意, 以上操作符不能使用事件类型的数据集, 以上操作符禁止使用事件类型的数据集!!