debugClear()

eSignal EFS 2

debugClear()

Top  Previous  Next

 

debugClear()

 

Clear the contents of the eSignal Formula Output 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( "The current close value is: " + close(0) + "\n" );

       }

 

}