Announcement

Collapse
No announcement yet.

error in getValueXXXXXX

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

  • error in getValueXXXXXX

    getValueXXX returns wrong values of "$TICK,D". For example, it always returns the current close value of "$TICK,D" instead of the high and low value I request.

    You can test it with following example:

    var high = getValueAbsolute("High", 0, -1, "$TICK,D"); debugPrintln(high[0]);

    var low = getValueAbsolute("Low", 0, -1, "$TICK,D"); debugPrintln(low[0]);

    It is very likely they reutrn wrong values for other market statistics.

  • #2
    Hello Clearpicks,

    For $TICK on a daily interval, we only calculate data based on the close. So the open, high and low are set to the same value as the close. We do calculate the OHLC data for intra-day intervals however.
    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

    Working...
    X