Just two new features to make life a little simpler

Dear All,

Two quick enhancements:

1). New operator “:” adds columns to a screen report. Similar to ShowVar but easier to use in some cases like slipstreaming them into complex rules. Click on the help button shown in image below or see the ShowVar help. For example run this rule in the screener to screen for stocks whose MktCap is greater than the median and whose 50 day MA is above the 200 day MA. The median and both MA’s are displayed in the screen report.

MktCap > @med:FMedian(“MktCap”) and @ma50:SMA(50) > @ma200:SMA(200)

2). Ranking nodes no longer need to add to 100%. Weights are automatically normalized. This makes it easier to set nodes relative to each other, like node A weight is 2x node B.

Hope you find these useful.

3 Likes

That’s nice!

Nice… I love little improvements like these. Thanks guys.

Just a word of warning. If you’re using : instead of ShowVar you’ll need to use parentheses around any expression that contains a mathematical symbol like +, -, *, or /. As the full description says,

The operator binds to the nearest element to its right or the contents of parenthesis if used. It is lower in precedence only to the power operator, ^.

New operator “:” adds columns to a screen report
I’m really liking this feature. Any plan to add it to the strategy simulator?

I’m lov’n the showvar “:” feature. I use it quite a bit.