Announcement

Collapse
No announcement yet.

Simple question debugPrintln(close);

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

  • Simple question debugPrintln(close);

    I have upgraded to eSignal 7.9 and since the upgrade I get the result
    [object series]
    in the output window with the code debugPrintln(close());
    I have also tried debugPrintln(close); and I get the output
    function close() {
    [native code]
    }

    This worked fine before I did the upgrade.
    Last edited by Mike2; 05-19-2005, 10:40 AM.

  • #2
    Hello Mike2,

    The open(), high(), low() and close() functions are now creating a data series just like the builtin study functions. If you want to look at a specific value from the series you need to specify the specific bar index. Try debugPrintln(close(0)).
    Jason K.
    Project Manager
    eSignal - an Interactive Data company

    EFS KnowledgeBase
    JavaScript for EFS Video Series
    EFS Beginner Tutorial Series
    EFS Glossary
    Custom EFS Development Policy

    New User Orientation

    Comment


    • #3
      Thanks Jason for your ultra-prompt response.
      Last edited by Mike2; 05-19-2005, 10:44 AM.

      Comment

      Working...
      X