debugClear() |
Previous Top 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" );
}
}