debugClear() |
Top Previous Next |
debugClear()
Clear the contents of the eSignal Formula Output Window.
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" ); }
}
|