Announcement

Collapse
No announcement yet.

Are bid, ask & trade valid options for Source in functions?

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

  • Are bid, ask & trade valid options for Source in functions?

    Are bid, ask and trade valid options in the following statement for interval Tick?

    fpArray[x] = new FunctionParameter("Source", FunctionParameter.STRING);
    with(fpArray[x++]){
    addOption("open");
    addOption("high");
    addOption("low");
    addOption("close");
    addOption("hl2");
    addOption("hlc3");
    addOption("ohlc4");
    setDefault("close");
    }

    Thanks,
    jgr

  • #2
    Hi jgr,

    No, these values are retrieved with a function and cannot be handled like those you listed.

    Comment

    Working...
    X