getFormulaOutputRoot() |
Top Previous Next |
getFormulaOutputRoot()
Returns the full path to the eSignal Formula Output folder. The Formula Output folder is the only folder into which an eSignal script can create files.
Parameters
Usage
function main() {
... ...
if ( isLastBarOnChart() == true ) { //clear the Formula Output Window debugClear(); //print a line of text to that window debugPrint( "Your Formula Output folder is located here: " + getFormulaOutputRoot() + "\n" ); }
}
|