def trend = if isNaN(reversal[1]) then 0 else if reversal[1] != reversal then 0 else trend[1] * (1 - smf) + cpc * smf;
def agg_count = compoundvalue(1, if timeInterval != timeInterval[1] then (getValue(agg_count, 1) + timeInterval - timeInterval[1]) % aggMultiplier else getValue(agg_count, 1), 0);
def isPeriodRolled = compoundValue(1, periodIndx != periodIndx[1], yes);
“reversal[1] != reversal ”、“timeInterval != timeInterval[1]”、“periodIndx != periodIndx[1]” 等等。
“X!= X[1]”在 thinkscript 中的真正含义是什么?