To: bede who wrote (8625 ) 2/8/1999 12:25:00 PM From: Peter H. Mack Respond to of 11149
Not that I should be the one to answer as I have only had this a couple of days, but I will take advantage of the opportunity because I am very impressed with this.. (True, I was a programmer for years before I retired) usually constants should be exactly as suggested.. If the sample shows caps, do it that way.. apparently exchange, input, and output are variables with special usage.. exchange=nasdaq; is the statement you want to make early in your routine. (dont forget the terminating semicolin..) endif; not endit is a particular kind of operator to terminate loops. do be careful to use parenthisis () carefully.. whatever is enclosed will be returned first and does clarify the statement. (close(0)-close(-230))/close(-233) is different than close(0) - close(-230)/ close(-233) and it should be easy to see why. If your canned scans aren't working, it may be the data input.. If your charts are ok, it may be nothing serious. Now my general comments.. I wrote a few messages into this thread as I was in the process of getting started with this.. I would say that I am very impressed.. The software is certainly adequate even though there are still very minor things to be done to polish it. (My experience is that it takes a year or two of updates to get it polished.) the scan language is simple, and probably is covered well enough in any book on basic so that it is understandable. It has three variable types, integer, float, and string. It is often a good idea to calculate into a variable and then use the variable in the print statement, to simplify the print statement.. (it used to be that print statements would burp if two many levels of complexity were built into them. the operators are the usual sets of logical and arithmetic..I didn't see Fancy operators like square root etc but I also dont think they would get used that much anyway.. The ability to place output in a list file which subsequently can be used as input is great.. Bunching scans in a profile to run is also great.. Thanks to all for their comments. pete