An older function from NT7 was defined as:
public [COLOR=#e74c3c]IDataSeries[/COLOR] KVOLfunc([COLOR=#e74c3c]IDataSeries [/COLOR]TPYDAY,[COLOR=#e74c3c]IDataSeries [/COLOR]TPTOYDAY,int fastX,int trigLen,int slowX)
{
SVOL.Set(TPTOYDAY[0]>=TPTOYDAY[0] ? +Volume[0] : -Volume[0]);
KVOL.Set(EMA(SVOL,fastX)[0]-EMA(SVOL,slowX)[0]);
return KVOL;
}
But my question is about the highlighted sections above. How do you describe these data series for this function? I was trying to find syntax help HERE, but I have not been able to work it out.

Comment