I don't know if anyone is familiar with stock application. there are certain formulas that you can input to analyze based on data. e.g.
input:LONG(26,20,100,1),SHORT(12,5,40,1),M(9,2,60,1);
DIFF : EMA(CLOSE,SHORT) - EMA(CLOSE,LONG);
DEA : EMA(DIFF,M);
MACD: 2*(DIFF-DEA), COLORSTICK;
what i am...