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
Announcement
Collapse
No announcement yet.
Daily Volume %.efs Doesn't Work in 11.5.2828 64 Bit
Collapse
X
-
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);
Last edited by waynecd; 10-14-2012, 10:25 PM.
Comment