Hi,
I updated the Quantopian-classic OLMAR algorithm to demonstrate the power and expressiveness of our new features (read more about them here). For more information on the OLMAR algorithm look around on the forums or read the original paper here.
The most useful new order method I think is order_target_percent() which is perfectly suited for rebalancing a portfolio to achieve a certain allocation given a vector of percentages. Before, OLMAR required an involved function to calculate how many shares have to be bought at which price to achieve the desired portfolio allocation. This is now 2 lines.
The history() function also obviates batchtransform which was mostly used to just return a dataframe -- the new method does this directly rather than requiring you to write a separate, decorated function.