getFormulaRoot() |
Top Previous Next |
getFormulaRoot()
Returns the full path to the eSignal Formula folder.
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" ); }
}
|