Re: [amibroker] initializing static variables.

2009-05-04 Thread Dennis Brown
Static variables will be a Null or empty string when read if never initialized. You can use that fact to your advantage by detecting these default values. Static variables remain the same for multiple passes of AFL. They are only deleted when you quit AmiBroker. You must specify by your

[amibroker] initializing static variables.

2009-05-04 Thread zeek ing
My questions is regarding static variables. When using them for IB controller, does one need to initialize them when autotrader is turned on. can one set them by using a param trigger like; paramtrigger( "autotraderstart",autotrader on) if (autotraderon) setstaticvar("", '''): etc etc with