Since the contest allows up to 3x leverage, is it possible to go above 100% For example, could I use
order_target_percent(security, 2, style=type)
to leverage a stock to 200% of my current portfolio value?
Is it possible to go straight from a long position to a short position? If I were 100% long, could I go 100% short with
order_target_percent(security, -1, style=type)
or would i need two orders
order_target_percent(security, 0, style=type)
order_target_percent(security, -1, style=type)
?