If I want to know the growth in each step for an Auxiliar, and this connecting with a level.
THANKS YOU!!
growth in each step
saving the auxiliary value
one method is to save the auxiliary in a stock. It dos not use any special function and is very transparent. Attached a simplistic model.
Regards.
J.J. Laublé
Regards.
J.J. Laublé
an alternative approach
for growth = ( aux-t - aux-t-1) / aux-t-1
then use
lastaux = DELAY FIXED(aux,1,aux) ~~|
auxgrowth = (aux - lastaux) / lastaux ~~|
using xidz(...) or such as called for
then use
lastaux = DELAY FIXED(aux,1,aux) ~~|
auxgrowth = (aux - lastaux) / lastaux ~~|
using xidz(...) or such as called for