src = market_data_source()
ret = roc(period=1)(src.c)

# Test shorthand in inline expressions
success = gt(ret, 0) and True
fail = lt(ret, 0) or False
abs_ret = abs(ret)

# Test multiple shorthand in one expression
extreme = lt(ret, -5) or gt(ret, 5)
