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.
20 lines
988 B
20 lines
988 B
ts_zscore(close, 20) / ts_std(close, 20)
|
|
group_rank(ts_mean(close, 5) / ts_mean(close, 20), sector)
|
|
ts_corr(volume, close, 10) * ts_std(close, 5)
|
|
ts_mean(high - low, 10) / ts_mean(close, 10)
|
|
group_zscore(ts_max(high, 20) - close, market_cap)
|
|
ts_mean(close / vwap, 5) - ts_mean(close / vwap, 20)
|
|
ts_min(low, 5) / ts_max(high, 5) - 1
|
|
group_rank(ts_std(close, 10), sector) * ts_mean(volume, 5)
|
|
ts_mean(close, 3) - ts_mean(close, 10)
|
|
ts_slope(close, 15) * ts_std(volume, 5)
|
|
group_zscore(ts_max(high, 10) - ts_min(low, 10), country)
|
|
ts_mean(volume / ts_mean(volume, 20), 5)
|
|
ts_corr(close, volume, 5) * ts_mean(close, 3)
|
|
group_rank(ts_zscore(close, 10), market_cap)
|
|
ts_mean(high - close, 5) / ts_mean(close - low, 5)
|
|
ts_mean(close / ts_mean(close, 20), 3) - 1
|
|
group_zscore(ts_mean(volume, 10), sector) * ts_zscore(close, 5)
|
|
ts_max(high, 10) / ts_min(low, 10) - 1
|
|
ts_mean(close > ts_mean(close, 5), 3) - ts_mean(close < ts_mean(close, 5), 3)
|
|
ts_mean(vwap / close, 10) - ts_mean(vwap / close, 30) |