# Hyperliquid Setup

* In .env

```
HYPERLIQUID_PRIVATE_KEY=<REPLACE WITH YOUR KEY>
```

* Specify "hyperliquid" to "exchange" field in Tradingview alert message.

sample alert template

```json
{
"exchange": "hyperliquid",
"strategy":"testStrategy",
"market":"ETH_USD",
"size":"0.01",
"reverse":false,
"order":"{{strategy.order.action}}",
"position":"{{strategy.market_position}}",
"price":"{{strategy.order.price}}"
}
```

#### HIP-3 Builder-Deployed Perps

Hyperliquid supports [HIP-3](https://hyperliquid.gitbook.io/hyperliquid-docs/hyperliquid-improvement-proposals-hips/hip-3-builder-deployed-perpetuals) builder-deployed perpetuals — markets for equities, commodities, and forex deployed by third-party builders like [trade.xyz](https://trade.xyz).

To trade these assets, use the full `dex:SYMBOL` format in the `market` field:

```json
{
  "exchange": "hyperliquid",
  "strategy": "SilverStrategy",
  "market": "xyz:SILVER",
  "size": 1.0,
  "order": "buy",
  "price": "{{strategy.order.price}}",
  "position": "long",
  "reverse": false
}
```

Examples: `"xyz:SILVER"`, `"xyz:GOLD"`, `"xyz:TSLA"`, `"xyz:NVDA"`, `"km:US500"`, `"flx:OIL"`.

### Note

We have identified an issue where the Hyperliquid API returns a "429 Too Many Requests" error. This occurs because Render.com shares outbound IP addresses across multiple users, which can cause our requests to exceed the API's rate limits.

So, I would suggest to deploy the connector tool to[ Digital Ocean and here is the guide](/docs/setup/deploy-on-digital-ocean.md)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://tv-connector.gitbook.io/docs/setup/hyperliquid-setup.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
