call()
call( EFSName, args )
- EFSName: Name of script to call.
- args: Arguments, if any, to pass to the script's main() function.
Call the "main(args)" function in another file within the formula root.
Call the moving average formula, passing 50 for the moving average length.
Example:
nValue = call("ma.txt", 50);
Here is a link to a thread (by Alexis Montenegro) on the eSignal Forum that discusses the usage of the call() and callFunction():