Is it possible at all to write information to the cursor window and not anywhere else on the chart? If so, what EFS calls would I have to make to do so?
Dave
The Cursor Window displays what is included in the return statement of a formula.
If you want an item to be displayed only in the Cursor Window and not plotted then you need to return it as a string
Alex
Originally posted by davewolfs Is it possible at all to write information to the cursor window and not anywhere else on the chart? If so, what EFS calls would I have to make to do so?
Thank you for the response. I noticed that setCursorLabelName() specifies an option if you use multiple return values. How does one return multiple return values?
davewolfs
You return an array eg return new Array(item1, item2, etc)
Alex
Originally posted by davewolfs Thank you for the response. I noticed that setCursorLabelName() specifies an option if you use multiple return values. How does one return multiple return values?
Comment