Hyperliquid does not have native TWAP or scale orders in the official app, so the honest answer is simple: you either place the ladder yourself, use the API, or trust a community tool with trading access. That matters more than the definition of TWAP.
A lot of guides talk about TWAP like it is a button you can click on every exchange. On Binance or Bybit, that is closer to true. On Hyperliquid, the official UI at app.hyperliquid.xyz supports Market, Limit, Stop Market, Stop Limit, Take Market, and Take Profit / Stop Loss on open positions, per Hyperliiquid docs. There is no native TWAP tab. There is no native scale order builder.
This guide explains what TWAP and scale orders are, how traders approximate them on Hyperliquid, what “slice randomization” really means, and which community tools showed up in research as of May 21, 2026.
Quick takeaway: On Hyperliquid, TWAP and scale orders are not native order types. A TWAP means splitting one trade over time. A scale order means placing a ladder of limit orders across prices. To do either cleanly, you need manual orders, API code, or a community tool you trust.
The first thing to know: the official UI does not have TWAP or scale
If you open the Hyperliquid trading screen and look for a TWAP button, you are not missing it. It is not there.
Per Hyperliquid’s order type docs, the official UI supports:
- Market orders
- Limit orders
- Stop Market orders
- Stop Limit orders
- Take Market orders
- Take Profit / Stop Loss orders on existing positions
That is different from a centralized exchange workflow. Binance and Bybit have native TWAP-style tools where you set the size, duration, slice count, and sometimes a max slippage limit. Hyperliquid gives you a fast on-chain order book, but not that execution helper in the app.
So when someone says they are “TWAPing into HYPE on Hyperliquid,” they usually mean one of three things:
- They are placing smaller orders manually over time.
- They wrote a script against the Hyperliquid API.
- They are using a third-party bot or trading interface.
That distinction is not pedantic. If you use a third-party tool, you may be giving it order-signing power. If you write your own script, your bug is now a trading bug. If you do it manually, you are the execution engine.
What a TWAP order is supposed to do
TWAP means Time Weighted Average Price. In plain English: instead of buying or selling the whole position at once, you split it into smaller pieces and execute those pieces over a set window.
A clean TWAP has a few parts:
- Total size: for example, $50,000 of ETH perps.
- Duration: for example, 30 minutes.
- Slice count: for example, 30 separate orders.
- Order style: market, limit, or a mix.
- Risk limits: max slippage, price cap, or stop condition.
In that example, a simple TWAP would send about $1,667 per slice across 30 minutes. That is much gentler than one $50,000 market order, especially on a smaller Hyperliquid perp where the top of book is thin.
But “gentler” does not mean “safe.” You can still lose money if the market moves against you for the whole 30 minutes. TWAP only changes how you enter or exit. It does not make the trade better.
Slice randomization: useful, but not magic
A basic TWAP is predictable. If your bot buys exactly $1,667 every 60 seconds, anyone watching the trade feed can start to guess what is happening. That is where slice randomization comes in.
Randomization can change a few things:
- Slice size: one order might be $1,420, the next $1,890.
- Timing: one slice might fire after 47 seconds, the next after 83 seconds.
- Order type: the bot might use a post-only limit sometimes and a marketable order other times.
- Price offset: limit orders may be placed a few ticks away instead of at the same distance every time.
The goal is not invisibility. Hyperliquid still has a public order book and trade history. Randomization just avoids the most obvious pattern: same size, same interval, same behavior.
This is also where beginners should slow down. A random TWAP script can behave worse than a simple one if it is poorly written. It might chase price too aggressively, keep firing after volatility spikes, or ignore account margin. Randomness helps only when the basic risk controls are already there.
What a scale order is supposed to do
A scale order is a ladder of limit orders. Instead of spreading a trade across time, you spread it across price.
Say HYPE trades near $57.57, which was the observed mark price in the research snapshot on May 21, 2026. You do not want to market buy. You only want exposure if price pulls back. A scale buy might look like this:
- $56.50 for 20% of the planned size
- $55.00 for 20%
- $53.50 for 20%
- $52.00 for 20%
- $50.50 for 20%
That is a scale order, even if Hyperliquid does not call it one in the UI. You are building the ladder yourself with limit orders.
A more advanced scale tool might let you choose a distribution:
- Equal size on every rung
- More size near the current price
- More size deeper in the range
- Custom weights per level
The tradeoff is simple. A scale order gives you price discipline, but it may not fill. A TWAP gives you time-based execution, but it may fill during a bad move. Neither tool removes the need for a thesis.
TWAP vs scale on Hyperliquid
Use the constraint to choose the tool.
- If time matters more than price, use a TWAP-style approach.
- If price matters more than time, use a scale ladder.
- If you need out of a position today, a ladder sitting far away may not help.
- If you only want to buy a pullback, a TWAP may force fills you did not want.
For example, exiting a large BTC perp over an hour is a TWAP-style problem. Hyperliquid’s BTC market is deep, and the May 21 research snapshot showed BTC around $77,740 with baseline funding at 0.00001250 per 8h. You may care less about catching the perfect tick and more about not slamming one order through the book.
Buying a smaller alt only if it retraces is a scale problem. You pick the levels first. If price never comes down, you miss the trade. That is not a bug. That is the point.
Why Hyperliquid’s order book changes the workflow
Hyperliquid is not a normal off-chain CEX matching engine. Its order book runs on Hyperliquid’s own L1. That gives the venue a different feel: fast, transparent, and API-friendly, but every submitted order is still an on-chain action inside that system.
That matters for TWAPs. If you split one trade into 100 slices, you are submitting 100 orders. If your bot constantly edits or cancels, you are creating even more actions. A desktop CEX TWAP hides most of that from the user. On Hyperliquid, your execution logic is closer to the surface.
It also matters for scale orders. A 20-rung ladder is 20 limit orders. If you change your mind, you need to cancel them. If the market moves quickly, some rungs may fill while others remain open. Beginners often forget the leftovers. Then they wake up with stale orders sitting on the book.
Community TWAP tools found in research
The community tooling exists, but it is thinner than a beginner might expect. A GitHub search in the research file found these Hyperliquid TWAP-related repos as of May 21, 2026:
- mooncitydev/asterdex-hl-trading-bot: 88 stars, a Bun-powered trading workstation with automated strategies.
- Davidrsdiaz/Hyperliquid-TWAP-API-Open-Source: 4 stars, focused on historical TWAP trade data.
- shelteredcorgi/HL-TWAP-API: 4 stars, also focused on historical TWAP data.
- bford21/hl-twap-api: 3 stars, for searching and exploring historical TWAP data.
- kamalbuilds/HyperTWAP-Shield: 2 stars, described as a TWAP executor using Hyperliquid precompiles for MEV privacy.
- CarlosB14/Hyperliquid-TWAP: 2 stars, a direct TWAP repo.
The important detail: several of these are data tools, not execution tools. They help analyze TWAP-like trades or historical data. They do not necessarily place your orders for you.
The two that looked closer to actual execution in the research were kamalbuilds/HyperTWAP-Shield and linx777/hyperliquid-mini-trading-demo. Low star counts do not automatically mean bad code, but they do mean you should review carefully before connecting a wallet.
Community scale order tools found in research
Scale order tooling looked even thinner.
- fzheng/hyperliquid-order-scale: 0 stars, tracks a BTC position plus pending orders and scales proportionally.
- linx777/hyperliquid-mini-trading-demo: 0 stars, a simple interface that supports Market, Limit, Scale, and TWAP orders.
That tells you something useful. Hyperliquid is huge as a venue, but beginner-friendly execution tooling around TWAP and scale orders is still early. If you are technical, this is an area where a small API project can be genuinely useful. If you are not technical, it is a reason to be cautious.
How to do a manual scale order in the official UI
The safest beginner version is manual. It is boring, but boring is good when the alternative is handing a bot your trading permissions.
- Pick the market, such as BTC, ETH, SOL, or HYPE.
- Decide your total position size before placing any order.
- Choose your price range.
- Split the size into rungs.
- Place each rung as a separate limit order.
- Write down the total open order size so you do not double-count your exposure.
- Cancel stale orders when the trade idea is no longer valid.
Here is a simple version. You want $10,000 of exposure, but only on a pullback. Instead of one order, you place five $2,000 limit buys at your chosen levels. If only two fill, you have a $4,000 position. If all five fill, you have the full $10,000. Nothing about the ladder should surprise you later.
How to think about a manual TWAP
A manual TWAP is just a schedule. You decide the plan before the first click.
- Total size: $12,000
- Window: 1 hour
- Slices: 12
- Approximate slice: $1,000 every 5 minutes
- Stop rule: pause if price moves more than your chosen invalidation level
You can randomize this by hand without making it complicated. Instead of exactly $1,000 every 5 minutes, you might place $800, then $1,200, then $950, with timing that varies by a minute or two. The point is to avoid becoming your own predictable bot.
Still, be honest about your attention span. Manual TWAPs are easy to start and easy to abandon halfway. If you cannot watch the trade, use smaller size or do not run the strategy manually.
Beginner mistakes to avoid
Assuming TWAP is built into Hyperliquid
It is not built into the official UI. If a tool offers Hyperliquid TWAP execution, it is a community tool, custom code, or a separate interface. Treat it that way.
Giving a random bot too much access
Execution tools need permission to place orders. Before using one, check the repo, maintainer history, open issues, and exactly what permissions it needs. A tiny GitHub repo with 2 stars may still be fine, but you should not treat it like audited infrastructure.
Making the slices too small or too frequent
A 100-slice TWAP sounds sophisticated. It may just create clutter. More slices means more orders, more cancels, and more ways for a script to misbehave.
Forgetting funding while a position builds
Hyperliquid funding is paid every hour, per Hyperliquid docs. The research snapshot showed baseline funding at 0.00001250 per 8h for BTC, ETH, SOL, and HYPE on May 21, 2026, but smaller markets can move hard. PROVE showed -0.00199716 per 8h, meaning shorts were paying heavily. PURR showed +0.00040335 per 8h, meaning longs were paying. Check funding before you slowly build a perp position.
Leaving stale ladder orders open
A scale order is only smart while the trade idea is still valid. If the market structure changes, cancel the old rungs. Do not let last week’s plan become this week’s accidental entry.
Protect the account that can place the orders
If you are trading size large enough to care about TWAPs and scale ladders, your wallet setup matters. A compromised browser wallet can place bad orders faster than you can cancel them. Pair this with sensible risk management habits.
Hyperliquid traders commonly connect through wallets such as MetaMask, Rabby, Phantom, and hardware-backed setups. The exact wallet matters less than the habit: separate your long-term storage from your active trading wallet, and do not give every new trading tool the same permissions.
Self-custody your trading capital with a Ledger
Trade behind a private connection with NordVPN
Disclosure: this page contains Ledger and NordVPN referral links. If you buy through them, Easy as Pie DeFi may receive a referral benefit, at no extra cost to you.
Bottom line
TWAP and scale orders are useful execution ideas, but on Hyperliquid they are not native buttons in the official app. Use manual ladders for simple scale entries, be careful with API tools, and treat every third-party TWAP bot as trading infrastructure that can lose money if it breaks.