isWeekly()

eSignal EFS 2

isWeekly()

Top  Previous  Next

 

isWeekly( [interval] )

 

Returns true if the interval passed is a weekly interval. If no interval is passed, the function uses the interval of the chart in which the script is running.

 

Parameters

 

interval

the interval to check

 

Usage

 

var bBail = false;

var bInit = false;

 

function main() {

 

       if ( bBail==true ) {

               return;

       }

 

       if ( bInit==false ) {

       

               if ( isWeekly()==true ) {

                       debugPrint( "Sorry. This script does not run in weekly charts.\n" );

                       bBail=true;

                       return;

               }

 

               bInit = true;

 

       }

               

       ...

       ...

 

}