You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@madshall Sorry for taking so long to get back to you.
Looking back at the TICKscript parser it was implemented as a right-associative parser which is confusing since most expressions parsers use left-association. TICKscript is interpreting the expression as
stream.eval(lambda: "val1" / ("val2" * 100.0)) which isn't what you meant.
We should change the association of the parser. We will use this issue to track the change.
The TICK script contains:
When it comes down to log file I see the
newVal
being 10000 less than expected.This works fine though:
Using v0.11.0
The text was updated successfully, but these errors were encountered: