Announcement

Collapse
No announcement yet.

I don't want it to plot!

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

  • I don't want it to plot!

    Hi,

    I want certain data to appear in the cursor window (the window that is found in the chart, that usually reports high, low, close, open, and changes as you move the bar. That's called a cursor window right?)

    but I don't to actually plot the data. How do I do that?



    Right now I have this in my premain()
    setCursorLabelName("option1:", 0);
    setCursorLabelName("option2:", 1);

    and I am returning variables vPH0 and vPH1
    return new Array(vPH0, vPH1)

  • #2
    Re: I don't want it to plot!

    matt3m
    If you want an item to be displayed only in the Cursor Window and not plotted then you could return it as a string (you can convert a value to a string in several ways such as using the .toString() or .toFixed() methods or simply by adding a string to the value eg myValue+"") or you could use the setShowSeries() function [see the EFS KnowledgeBase for the description and syntax]
    Alex


    Originally posted by matt3m
    Hi,

    I want certain data to appear in the cursor window (the window that is found in the chart, that usually reports high, low, close, open, and changes as you move the bar. That's called a cursor window right?)

    but I don't to actually plot the data. How do I do that?



    Right now I have this in my premain()
    setCursorLabelName("option1:", 0);
    setCursorLabelName("option2:", 1);

    and I am returning variables vPH0 and vPH1
    return new Array(vPH0, vPH1)

    Comment


    • #3
      Thanks. Case closed.

      Comment

      Working...
      X