|
|
|
|
|
LET Let theVariable = <symbol> [, <symbol>]
Let ATTR theVariable = <attribute>[,<attribute>]
The INTIALIZE statement allows you to pre-assign values to a variable to be used later in the query. Anything that needs to be done once, and not over and over every period (depending on the execute units of the query) can be placed in the INITIALIZE block. This is a good place to initialize variables used to count to a starting value of zero. Example: INITIALIZE 1:
ORDER EXIT
FINALIZE The FINALIZE statement block lets you perform calculations after a query has finished running. It can be used to calculate performance statistics on the results of P&L queries, etc. Example: INITIALIZE FINALIZE FINAL
SHOW LET
theSym = GII.IBM.NYSE, DELL, DOW DO
every 1 unit
|