Announcement

Collapse
No announcement yet.

Writing information to Cursor Window

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Writing information to Cursor Window

    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?

    Thanks,

    Dave

  • #2
    Re: Writing information to Cursor Window

    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?

    Thanks,

    Dave

    Comment


    • #3
      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


      • #4
        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

        Working...
        X