词汇:0
adj. 伪造的;错误的;虚伪的
相关场景
It's compatible with pgvector's data types and syntax but boasts extra performance and just hit v1.0.
>> 2025-11 vanilla
>> 2025-11 vanilla
它与pgvector的数据类型和语法兼容,但具有额外的性能,刚刚达到v1.0。
SP rank with the following meaning:// 0----invalid rank //1----A+//2----A//3----A-//4----B+//5----B//6----B-//7----C+//8----C//9----C- | Matrix.
>> Fundamental Company Fundamental Data for Equity
>> Fundamental Company Fundamental Data for Equity
Normalizes the values in a group to be between 0 and 1. (x - groupmin) / (groupmax - groupmin)
>> Operators
>> Operators
将组中的值标准化为介于0和1之间。(x-组最小值)/(组最大值-组最小)
Group operators are a type of cross-sectional operator that compares stocks at a finer level, where the cross-sectional operation is applied within each group, rather than across the entire market. The group_rank operator allocates the stocks to their specified group, then within each group, it ranks the stocks based on their input value for data field x and returns an equally distributed number between 0.0 and 1.0.
This operator may help reduce both outliers and drawdown while reducing correlation.
Example: group_rank(x, subindustry);
The stocks are first grouped into their respective subindustry.
Within each subindustry, the stocks within that subindustry are ranked based on their input value for data field x and assigned an equally distributed number between 0.0 and 1.0.
>> Operators
>> Operators
集团运营商是一种横截面运营商,它在更精细的层面上比较股票,其中横截面操作适用于每个集团,而不是整个市场。group_rank运算符将股票分配到指定的组,然后在每个组内,它根据数据字段x的输入值对股票进行排名,并返回一个在0.0和1.0之间均匀分布的数字。此运算符可能有助于减少异常值和下跌,同时减少相关性。示例:group_rank(x,子行业)这些股票首先被归入各自的子行业。在每个子行业内,该子行业内的股票根据其数据字段x的输入值进行排名,并分配一个在0.0和1.0之间均匀分布的数字。
Trade_When (x=triggerTradeExp, y=AlphaExp, z=triggerExitExp)
If triggerExitExp > 0, Alpha = NaN.
Else if triggerTradeExp > 0, Alpha = AlphaExp;
else, Alpha = previousAlpha
>> Operators
>> Operators
Convert float values into indexes for user-specified buckets. Bucket is useful for creating group values, which can be passed to GROUP as input;
Examples:
my_group = bucket(rank(volume), range="0.1,1,0.1");
group_neutralize(sales/assets, my_group)
my_group = bucket(rank(volume), buckets ="0.2,0.5,0.7", skipBoth=True, NANGroup=True);
group_neutralize(sales/assets, my_group)
>> Operators
>> Operators
将浮点值转换为用户指定bucket的索引。Bucket可用于创建组值,这些值可以作为输入传递给group;示例:my_group=bucket(排名(体积),范围=“0.1,1,0.1”);group_neutralize(销售/资产,my_group)my_group=bucket(排名(数量),bucket=“0.2,0.5,0.7”,skipBoth=True,NANGroup=True);group_中性化(销售/资产,my_group)
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; Rank(close); Rank (close, rate=0) # Sorts precisely;
X = (4,3,6,10,2) => Rank(x) = (0.5, 0.25, 0.75, 1, 0)
>> Operators
>> Operators
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;quantile(close, driver = gaussian, sigma = 0.5 ); This operator may help reduce outliers.
>> Operators
>> Operators
对原始向量进行排序,移动排序后的阿尔法向量,应用分布(高斯分布、柯西分布、均匀分布)。如果驱动器是均匀的,它只需用阿尔法向量中所有阿尔法值的平均值减去每个阿尔法值;分位数(闭合,驱动器=高斯,西格玛=0.5);此运算符可能有助于减少异常值。
Returns various parameters related to regression function; ts_regression(est_netprofit, est_netdebt, 252, lag = 0, rettype = 2);
Taking the data from the past 252 trading days (1 year), return the β coefficient from the equation when estimating the est_netprofit using the est_netdebt.
>> Operators
>> Operators
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.
>> Operators
>> Operators
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.
>> Operators
>> Operators
Backfill is the process of replacing the NAN or 0 values by a meaningful value (i.e., a first non-NaN value)。
>> Operators
>> Operators
回填是用有意义的值(即第一个非NAN值)替换NAN或0值的过程
This operator returns x – ts_mean(x, d), but it deals with NaNs carefully;
Example:
If d = 6 and values for past 6 days are [6,2,8,5,9,NaN] then ts_mean(x,d) = 6 since NaN are ignored from mean computation. Hence, ts_av_diff(x,d) = 6-6 = 0
>> Operators
>> Operators
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. If d = 6 and values for past 6 days are [6,2,8,5,9,4] with first element being today’s value then min value is 2 and it is present 1 days before today. Hence, ts_arg_min(x, d) = 1
>> Operators
>> Operators
返回过去d天时间序列中最小值的相对索引;如果当前日期具有过去d天的最小值,则返回0;如果前一天具有过去d天的最小值,则返回1。如果d=6,过去6天的值为[6,2,8,5,9,4],第一个元素为今天的值,则最小值为2,并且在今天之前1天存在。因此,ts_arg_min(x,d)=1
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;If d = 6 and values for past 6 days are [6,2,8,5,9,4] with first element being today’s value then max value is 9 and it is present 4 days before today. Hence, ts_arg_max(x, d) = 4
>> Operators
>> Operators
返回过去d天时间序列中最大值的相对索引。如果当前日期具有过去d天的最大值,则返回0。如果前一天具有过去d天的最大值,则返回1
Returns K-th value of input by looking through lookback days. This operator can be used to backfill missing data if k=1;Returns k-th value of input by looking through lookback days while ignoring space separated scalars in ignore list. This operator is also known as backfill operator as it can be used to backfill missing data.
ignore parameter is used to provide list of separated scalars to ignore from counting
Example of backfill: kth_element(sales/assets,252,k="1",ignore="NAN 0")
>> Operators
>> Operators
通过查看回溯天数返回输入的第K个值。如果k=1,此运算符可用于回填缺失的数据;通过查看回溯天数,同时忽略忽略忽略列表中以空格分隔的标量,返回输入的第k个值。此运算符也称为回填运算符,因为它可用于回填缺失的数据。gnore参数用于提供从计数中忽略的独立标量列表。回填示例:kth_element(sales/assets,252,k=“1”,ignore=“NAN 0”)
Limits amount and magnitude of changes in input (thus reducing turnover); hump(-ts_delta(close, 5), hump = 0.00001)
>> Operators
>> Operators
限制投入变化的数量和幅度(从而降低换手率)
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).
>> Operators
>> Operators
x raised to the power of y such that final result preserves sign of x; sign(x) * (abs(x) ^ y)
x raised to the power of y such that final result preserves sign of x. For power of 2, x ^ y will be a parabola but signed_power(x, y) will be odd and one-to-one function (unique value of x for certain value of signed_power(x, y)) unlike parabola.
Example:
If x = 3, y = 2 ⇒ abs(x) = 3 ⇒ abs(x) ^ y = 9 and sign(x) = +1 ⇒ sign(x) * (abs(x) ^ y) = signed_power(x, y) = 9;
If x = -9, y = 0.5 ⇒ abs(x) = 9 ⇒ abs(x) ^ y = 3 and sign(x) = -1 ⇒ sign(x) * (abs(x) ^ y) = signed_power(x, y)
>> Operators
>> Operators
if input > 0, return 1; if input < 0, return -1; if input = 0, return 0; if input = NaN, return NaN;
>> Operators
>> Operators
This operator converts a grouping field with many buckets into a lesser number of only the available buckets, making working with grouping fields computationally efficient. The example below will clarify the implementation.
Example:
Say a grouping field is provided as an integer (e.g., industry: tech -> 0, airspace -> 1, ...) and for a certain date, we have instruments with grouping field values among {0, 1, 2, 99}. Instead of creating 100 buckets and keeping 96 of them empty, it is better to just create 4 buckets with values {0, 1, 2, 3}. So, if the number of unique values in x is n, densify maps those values between 0 and (n-1). The order of magnitude need not be preserved.
>> Operators
>> Operators
此运算符将具有许多桶的分组字段转换为只有较少数量的可用桶,从而提高了分组字段的计算效率。下面的例子将阐明实施。示例:假设分组字段以整数形式提供(例如,行业:技术->0,空域->1,…),对于某个日期,我们有分组字段值在{0,1,2,99}之间的仪器。与其创建100个桶并保持其中96个为空,不如只创建4个值为{0,1,2,3}的桶。因此,如果x中唯一值的数量为n,则将这些值映射到0和(n-1)之间。数量级不需要保留。
Add all inputs (at least 2 inputs required). If filter = true, filter all input NaN to 0 before adding.
>> Operators
>> Operators
Both Delay-0 and Delay-1 Alphas[1] (referred to as D0 and D1 Alphas respectively throughout) try to capitalize by rebalancing the Alpha positions daily. D0 Alphas are Alphas that also try to benefit from using the most recent information. These Alphas utilize the same available data during the day and usually simulate trades some period before the market close.
>> worldquantbrain_5_vector
>> worldquantbrain_5_vector
Delay-0和Delay-1阿尔法[1](分别称为D0和D1阿尔法)都试图通过每天重新平衡阿尔法头寸来实现资本化。D0阿尔法是也试图从使用最新信息中受益的阿尔法。这些阿尔法在白天利用相同的可用数据,通常在市场收盘前的一段时间内模拟交易。