No Code Strategy Builder

Create trading strategies with 0 code!

No-Code Strategy Builder Allows Users to describe a strategy in plain & natural language (e.g., “create a trend following strategy”). The Large Language Model (HyperX) interprets users prompts and auto-generates underlying trading logic & code turning prompts into trading strategies. Lets look at a simple example below: - HyperX was prompted to Create a trend following strategy & in response the following code was generated with underlying trading logic that can be easily modified, back tested & automated live onto Hyperliquid with just one click! Trading Logic generated: # Long entry: EMA20 crosses above EMA50, close > EMA50, ADX > 25

        long_cond = (
            (dataframe['ema_20_prev'] <= dataframe['ema_50_prev']) &
            (dataframe['ema_20'] > dataframe['ema_50']) &
            (dataframe['close'] > dataframe['ema_50']) &
            (dataframe['adx'] > 25)      

# Long exit: EMA20 crosses below EMA50 OR ADX < 20

See the full code below!

Last updated