PositionExecutor: Manages opening and closing positions of equal amounts, ensuring the portfolio remains balanced ± the position's profit or loss. It's applicable in both perpetual and spot markets, requiring pre-ownership of the asset for spot markets.
The PositionExecutor uses a configuration object, PositionExecutorConfig, to manage an order after it is placed, following the Triple Barrier Method. This configuration sets pre-defined stop loss, take profit, time limit, and trailing stop parameters.
classTripleBarrierConf(BaseModel):# Configure the parameters for the positionstop_loss:Optional[Decimal]take_profit:Optional[Decimal]time_limit:Optional[int]trailing_stop_activation_price_delta:Optional[Decimal]trailing_stop_trailing_delta:Optional[Decimal]# Configure the parameters for the orderopen_order_type:OrderType=OrderType.LIMITtake_profit_order_type:OrderType=OrderType.MARKETstop_loss_order_type:OrderType=OrderType.MARKETtime_limit_order_type:OrderType=OrderType.MARKET
Key Configs:
stop_loss: Determines the stop-loss percentage
take_profit: Sets the take-profit percentage.
time_limit: Establishes a time limit for the trade.
trailing_stop_activation_price_delta: Specifies the delta for activating a trailing stop.
trailing_stop_trailing_delta: Sets the trailing delta for the trailing stop.
The triple barrier method is a structured approach to position management, where three "barriers" determine the outcome of a trade:
Stop Loss: Caps the potential loss on a position.
Take Profit: Secures profits by specifying a target exit price.
Time Limit: Restricts the duration a trade can remain open, adding a temporal dimension to the exit strategy.
Additionally, PositionExecutor also contains a Trailing Stop mechanism, which dynamically adjusts the stop loss level as favorable price movements occur.
The PositionExecutor class is designed to work on both spot and perpetual exchanges, allowing you to write strategies that be used on either type:
On perpetual exchanges, they apply the take-profit and stop-loss levels described below to manage a long or short position after it has been created.
On spot exchanges, they place take-profit and stop-loss orders to manage an order after it has been filled. This is similar to Hanging Orders but on an individual order level.
The PositionExecutor is a powerful tool within Hummingbot for implementing strategies that require precise entry and exit conditions. By leveraging the triple barrier method, it provides a structured and disciplined approach to trade management, vital for both market making and directional trading strategies.