We don't have a step-through debugger currently. The best way to debug EFS formulas is with the debugPrintln() functions. You can pass a string of information to the function and it will appear in the formula output window (Tools-->EFS-->Formula Output Window). You can also use EFS functions such as getCurrentBarIndex(). Example,
debugPrintln(getCurrentBarIndex() + " my MA Value = " + vMA);
Jason K.
Project Manager eSignal - an Interactive Data company
FWIW, I have put together a function called trace which is in my fileshare. I am currently in the process of revising it, but it works well for what you are doing==> trace debugger
Comment