I am just learning EFS using the online video series http://www.esignal.com/support/esign...cript_efs.aspx and ran into a problem on the Functions section in the video the following code snippet generated the expected value
debugClear();
x = getMostRecentTrade();
debugPrintln(x);
When I did it I got this error message
C:/Users/Vectisma/Documents/Interactive Data/Formulas/Training/ex15_functions.efs, line 3: Error: Failed to call function 'getMostRecentTrade': not appropriate context 'global'.
debugClear();
x = getMostRecentTrade();
debugPrintln(x);
When I did it I got this error message
C:/Users/Vectisma/Documents/Interactive Data/Formulas/Training/ex15_functions.efs, line 3: Error: Failed to call function 'getMostRecentTrade': not appropriate context 'global'.
Comment