> ## Documentation Index
> Fetch the complete documentation index at: https://condor.hummingbot.org/llms.txt
> Use this file to discover all available pages before exploring further.

# Open Clmm Position

> Open a NEW CLMM position with initial liquidity.

Example:
    connector: 'meteora'
    network: 'solana-mainnet-beta'
    pool_address: '2sf5NYcY4zUPXUSmG6f66mskb24t5F8S11pC1Nz5nQT3'
    lower_price: 150
    upper_price: 250
    base_token_amount: 0.01
    quote_token_amount: 2
    slippage_pct: 1
    wallet_address: (optional)
    extra_params: {"strategyType": 0}  # Meteora-specific

Returns:
    Transaction hash and position address



## OpenAPI

````yaml /api-reference/openapi.json post /gateway/clmm/open
openapi: 3.1.0
info:
  title: Hummingbot API
  description: API for managing Hummingbot trading instances
  version: 1.0.1
servers:
  - url: http://localhost:8000
    description: Local development server
security: []
paths:
  /gateway/clmm/open:
    post:
      tags:
        - Gateway CLMM
      summary: Open Clmm Position
      description: |-
        Open a NEW CLMM position with initial liquidity.

        Example:
            connector: 'meteora'
            network: 'solana-mainnet-beta'
            pool_address: '2sf5NYcY4zUPXUSmG6f66mskb24t5F8S11pC1Nz5nQT3'
            lower_price: 150
            upper_price: 250
            base_token_amount: 0.01
            quote_token_amount: 2
            slippage_pct: 1
            wallet_address: (optional)
            extra_params: {"strategyType": 0}  # Meteora-specific

        Returns:
            Transaction hash and position address
      operationId: open_clmm_position_gateway_clmm_open_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CLMMOpenPositionRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CLMMOpenPositionResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBasic: []
components:
  schemas:
    CLMMOpenPositionRequest:
      properties:
        connector:
          type: string
          title: Connector
          description: CLMM connector (e.g., 'meteora', 'raydium', 'uniswap')
        network:
          type: string
          title: Network
          description: Network ID in 'chain-network' format (e.g., 'solana-mainnet-beta')
        pool_address:
          type: string
          title: Pool Address
          description: Pool contract address
        lower_price:
          anyOf:
            - type: number
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
          title: Lower Price
          description: Lower price for position range
        upper_price:
          anyOf:
            - type: number
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
          title: Upper Price
          description: Upper price for position range
        base_token_amount:
          anyOf:
            - type: number
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Base Token Amount
          description: Amount of base token to add
        quote_token_amount:
          anyOf:
            - type: number
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Quote Token Amount
          description: Amount of quote token to add
        slippage_pct:
          anyOf:
            - type: number
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Slippage Pct
          description: 'Maximum slippage percentage (default: 1.0)'
          default: 1
        wallet_address:
          anyOf:
            - type: string
            - type: 'null'
          title: Wallet Address
          description: Wallet address (optional, uses default if not provided)
        extra_params:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Extra Params
          description: Additional connector-specific parameters
      type: object
      required:
        - connector
        - network
        - pool_address
        - lower_price
        - upper_price
      title: CLMMOpenPositionRequest
      description: Request to open a new CLMM position with initial liquidity
    CLMMOpenPositionResponse:
      properties:
        transaction_hash:
          type: string
          title: Transaction Hash
          description: Transaction hash
        position_address:
          type: string
          title: Position Address
          description: Address of the newly created position
        trading_pair:
          type: string
          title: Trading Pair
          description: Trading pair
        pool_address:
          type: string
          title: Pool Address
          description: Pool address
        lower_price:
          type: string
          pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
          title: Lower Price
          description: Lower price bound
        upper_price:
          type: string
          pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
          title: Upper Price
          description: Upper price bound
        status:
          type: string
          title: Status
          description: Transaction status
          default: submitted
      type: object
      required:
        - transaction_hash
        - position_address
        - trading_pair
        - pool_address
        - lower_price
        - upper_price
      title: CLMMOpenPositionResponse
      description: Response after opening a new CLMM position
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBasic:
      type: http
      scheme: basic

````