Announcement

Collapse
No announcement yet.

Daily Volume %.efs Doesn't Work in 11.5.2828 64 Bit

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

  • Daily Volume %.efs Doesn't Work in 11.5.2828 64 Bit

    I just updated from 11.5 64 bit and this efs doesn't display any longer. The formula returns realtime intraday volume as a % of 20 day MA volume. Would appreciate any help, thanks.Daily Volume %.efsDaily Volume %.efs

  • #2
    The return value type is text. I just multiplied it by one to convert it to a number type. It seems that ".toPrecision()" returns a string.
    PHP Code:
    return (Math.round(volPercent).toPrecision(numPrec)*1); 
    FWIW I suggest you add a "var " in front of each local variable declaration.
    Last edited by waynecd; 10-14-2012, 09:25 PM.

    Comment

    Working...
    X