getFormulaRoot()
Previous Top Next
getFormulaRoot()
Returns the full path to the eSignal Formula folder.
Parameters
Usage
Previous Top Next
getFormulaRoot()
Returns the full path to the eSignal Formula folder.
Note: you can view/change the location of the Formula folder from within the eSignal program. Click on Tools-->EFS-->Settings to pull up the Formula Engine Settings window. |
Parameters
none |
function takes no parameters |
Usage
function main() { ... ... if ( isLastBarOnChart() == true ) { //clear the Formula Output Window debugClear(); //print a line of text to that window debugPrint( "Your Formula folder is located here: " + getFormulaRoot() + "\n" ); } }