getFormulaOutputRoot()

eSignal EFS 2

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.

 

Note: you can view/change the location of the Formula Output 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 Output folder is located here: " + getFormulaOutputRoot() + "\n" );

       }

 

}

 

File Object