![]() |
Printing Multiple Charts with ESPL |
| 8:03 Bill: Does anybody
know how to print multiple charts all at once on Ensign?
18:03 Ensign Howard: You could write and ESPL script to print. The script could be like the following 18:04 Ensign Howard: begin 18:04 Ensign Howard: Chart("IBM.D"0; 18:04 Ensign Howard: btnPrint.Click; 18:04 Ensign Howard: mnuCloseWindow; 18:04 Ensign Howard: Chart("ES H9.R250"); 18:04 Ensign Howard: btnPrint.Click; 18:04 Ensign Howard: mnuCloseWindow; 18:04 Ensign Howard: etc... 18:04 Ensign Howard: end; Let me test .....
18:12 Ensign Howard: This last post works better to have the pause before the print, so the chart has time to paint before it prints 18:18 Ensign Howard: Bill you can get fancier if you want the ESPL program to scroll through a list of symbols on a quote page and print a chart for each symbol on the list. 18:19 Ensign Howard: Let me show you an example of this. 18:21 Ensign Howard: This example shows loading the symbol list for a custom quote page and looping through its symbol list. Instead of the stuff to dress the chart with studies and print a report you would put in the btnPrint.Click; statement to print the chart, then close the window, and cycle to opening and printing the next symbol on the list. Last updated 01/28/2009 |