Hyperliquid: benchmark vaults
In this notebook, we examine native Hyperliquid vaults (perpetuals trading vaults on Hypercore)
These vaults use Hyperliquid’s native non-EVM layer (Hypercore), identified by synthetic chain ID -999
Usage
This is an open source notebook based on open data - You can edit and remix this notebook yourself
To do your own data research:
Read general instructions how to run the tutorials
See
ERC-4626: scanning vaults' historical price and performanceexample in tutorials first how to buildvault-prices-1h.parquetfile.Run the Hyperliquid daily metrics pipeline (
scripts/hyperliquid/daily-vault-metrics.py) to populate Hyperliquid vault data
For any questions, follow and contact Trading Strategy community.
Setup
Set up notebook rendering output mode
Use static image charts so this notebook is readeable on Github / ReadTheDocs
[1]:
import pandas as pd
from plotly.offline import init_notebook_mode
import plotly.io as pio
from eth_defi.vault.base import VaultSpec
from eth_defi.research.notebook import set_large_plotly_chart_font
# Fix X time axis bugs in Plotly charts
from eth_defi.monkeypatch import plotly
pd.options.display.float_format = "{:,.2f}".format
pd.options.display.max_columns = None
pd.options.display.max_rows = None
# Set up Plotly chart output as SVG
image_format = "png"
width = 1400
height = 800
# https://stackoverflow.com/a/52956402/315168
init_notebook_mode()
# https://plotly.com/python/renderers/#overriding-the-default-renderer
pio.renderers.default = image_format
current_renderer = pio.renderers[image_format]
# Have SVGs default pixel with
current_renderer.width = width
current_renderer.height = height
# Set all Plotly charts to use large font sizes for better readability,
# for sharing on mobile
set_large_plotly_chart_font(line_width=5, legend_font_size=16)
pio.templates.default = "custom"
Read and clean raw scanned vault price data
Read the Parquet file produced earlier with price scan
Hyperliquid vault data is merged into the same files as ERC-4626 data
[2]:
from pathlib import Path
from eth_defi.vault.vaultdb import VaultDatabase, read_default_vault_prices
vault_db = VaultDatabase.read()
prices_df = read_default_vault_prices()
print(f"We have {len(vault_db):,} vaults in the database and {len(prices_df):,} price rows.")
We have 29,520 vaults in the database and 6,113,673 price rows.
Choose Hypercore chain
Hypercore is Hyperliquid’s native non-EVM layer
Uses synthetic chain ID -999 to avoid collision with real EVM chain IDs
[3]:
from eth_defi.vault.base import VaultSpec
from eth_defi.chain import get_chain_name
from eth_defi.hyperliquid.constants import HYPERCORE_CHAIN_ID
selected_chain_id = HYPERCORE_CHAIN_ID
chain_name = get_chain_name(selected_chain_id)
print(f"Examining chain {chain_name} ({selected_chain_id})")
Examining chain Hypercore (9999)
Price data filtering
Filter prices for Hypercore vaults only
[4]:
prices_df = prices_df[prices_df["chain"] == selected_chain_id]
print(f"Examined prices contain {len(prices_df):,} price rows across all vaults on {chain_name}.")
prices_df.head(4)
Examined prices contain 16,142 price rows across all vaults on Hypercore.
[4]:
| id | chain | address | block_number | share_price | total_assets | total_supply | performance_fee | management_fee | errors | vault_poll_frequency | max_deposit | max_redeem | deposits_open | redemption_open | trading | available_liquidity | utilisation | name | event_count | protocol | raw_share_price | returns_1h | avg_assets_by_vault | dynamic_tvl_threshold | tvl_filtering_mask | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| timestamp | ||||||||||||||||||||||||||
| 2025-06-18 | 9999-0x003fa0ec38909d04f5b2ddb47b2a7be50c347413 | 9999 | 0x003fa0ec38909d04f5b2ddb47b2a7be50c347413 | 0.00 | 1.00 | 3,687.18 | 0.00 | 0.00 | 0.00 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | Owari Desu Ventures | 2 | Hyperliquid | 1.00 | NaN | 8,325.89 | 166.52 | False | |
| 2025-06-25 | 9999-0x003fa0ec38909d04f5b2ddb47b2a7be50c347413 | 9999 | 0x003fa0ec38909d04f5b2ddb47b2a7be50c347413 | 0.00 | 1.00 | 3,687.18 | 0.00 | 0.00 | 0.00 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | Owari Desu Ventures | 2 | Hyperliquid | 1.00 | 0.00 | 8,325.89 | 166.52 | False | |
| 2025-07-02 | 9999-0x003fa0ec38909d04f5b2ddb47b2a7be50c347413 | 9999 | 0x003fa0ec38909d04f5b2ddb47b2a7be50c347413 | 0.00 | 1.01 | 3,700.75 | 0.00 | 0.00 | 0.00 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | Owari Desu Ventures | 2 | Hyperliquid | 1.01 | 0.00 | 8,325.89 | 166.52 | False | |
| 2025-07-09 | 9999-0x003fa0ec38909d04f5b2ddb47b2a7be50c347413 | 9999 | 0x003fa0ec38909d04f5b2ddb47b2a7be50c347413 | 0.00 | 1.05 | 3,860.40 | 0.00 | 0.00 | 0.00 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | Owari Desu Ventures | 2 | Hyperliquid | 1.05 | 0.04 | 8,325.89 | 166.52 | False |
Filter vaults
Choose vaults on Hypercore
Filter out low TVL entries
[5]:
min_tvl = 50_000
vault_db_chain = {spec: row for spec, row in vault_db.items() if spec.chain_id == selected_chain_id}
vault_db = {spec: row for spec, row in vault_db_chain.items() if (row["NAV"] or 0) >= min_tvl}
selected_vault_ids = {spec.as_string_id() for spec in vault_db.keys()}
prices_df = prices_df.loc[prices_df["id"].isin(selected_vault_ids)]
print(f"We have selected {len(vault_db)} vaults out of total of {len(vault_db_chain):,} vaults on chain {chain_name}, having {len(prices_df):,} price rows.")
print("An example vault metadata:")
example_vault = next(iter(vault_db.values()))
display(pd.DataFrame(list(example_vault.items()), columns=["Key", "Value"]))
We have selected 108 vaults out of total of 323 vaults on chain Hypercore, having 5,713 price rows.
An example vault metadata:
| Key | Value | |
|---|---|---|
| 0 | Symbol | Hyperliqui |
| 1 | Name | Hyperliquidity Provider (HLP) |
| 2 | Address | 0xdfc24b077bc1425ad1dea75bcb6f8158e10df303 |
| 3 | Denomination | USDC |
| 4 | Share token | Hyperliqui |
| 5 | NAV | 381921518.322492 |
| 6 | Shares | 0 |
| 7 | Protocol | Hyperliquid |
| 8 | Link | https://app.hyperliquid.xyz/vaults/0xdfc24b077... |
| 9 | First seen | 2023-05-04 23:39:56.849000 |
| 10 | Mgmt fee | 0.00 |
| 11 | Perf fee | 0.00 |
| 12 | Deposit fee | 0.00 |
| 13 | Withdraw fee | 0.00 |
| 14 | Features | |
| 15 | _detection_data | ERC4262VaultDetection(chain=9999, address='0xd... |
| 16 | _denomination_token | {'address': '0x2000000000000000000000000000000... |
| 17 | _share_token | None |
| 18 | _fees | FeeData(fee_mode=<VaultFeeMode.internalised_sk... |
| 19 | _flags | {VaultFlag.perp_dex_trading_vault} |
| 20 | _lockup | 4 days, 0:00:00 |
| 21 | _description | This community-owned vault provides liquidity ... |
| 22 | _short_description | This community-owned vault provides liquidity ... |
| 23 | _available_liquidity | None |
| 24 | _utilisation | None |
| 25 | _deposit_closed_reason | None |
| 26 | _deposit_next_open | None |
| 27 | _redemption_closed_reason | None |
| 28 | _redemption_next_open | None |
| 29 | _risk | None |
Calculate vault lifetime metrics
Calculate the DataFrame of lifetime metrics for each vault
[6]:
from eth_defi.research.vault_metrics import calculate_lifetime_metrics, clean_lifetime_metrics
from eth_defi.research.vault_metrics import format_lifetime_table
lifetime_data_df = calculate_lifetime_metrics(
prices_df,
vault_db,
)
print(f"Cleaning metrics for {len(lifetime_data_df):,} vaults")
lifetime_data_df = clean_lifetime_metrics(
lifetime_data_df,
max_annualised_return=99.99, # 9999% max return
)
print(f"Calculated lifetime metrics for {len(lifetime_data_df):,} vaults")
lifetime_data_df = lifetime_data_df.sort_values(["one_month_cagr"], ascending=False)
display(lifetime_data_df.head(2))
Cleaning metrics for 108 vaults
Vault entries with too high NAV values filtered out: 0
Vault entries with too small ATH NAV values filtered out: 0
Vaults abnormally high returns: 4
Vault entries with too few deposit and redeem events (min 25) filtered out: 0
Calculated lifetime metrics for 104 vaults
| name | vault_slug | protocol_slug | share_token_address | denomination_token_address | lifetime_return | lifetime_return_net | cagr | cagr_net | three_months_returns | three_months_returns_net | three_months_cagr | three_months_cagr_net | three_months_sharpe | three_months_sharpe_net | three_months_volatility | one_month_returns | one_month_returns_net | one_month_cagr | one_month_cagr_net | denomination | normalised_denomination | denomination_slug | share_token | chain | peak_nav | current_nav | years | mgmt_fee | perf_fee | deposit_fee | withdraw_fee | fee_mode | fee_internalised | gross_fees | net_fees | fee_label | lockup | event_count | protocol | risk | risk_numeric | id | start_date | end_date | address | chain_id | stablecoinish | first_updated_at | first_updated_block | last_updated_at | last_updated_block | last_share_price | features | flags | notes | link | trading_strategy_link | one_month_start | one_month_end | one_month_samples | three_months_start | three_months_end | three_months_samples | lifetime_start | lifetime_end | lifetime_samples | period_results | deposit_closed_reason | redemption_closed_reason | deposit_next_open | redemption_next_open | available_liquidity | utilisation | description | short_description | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 81 | Long HYPE & BTC | Short Garbage | long-hype-btc-short-garbage | hyperliquid | 0xac26cf5f3c46b5e102048c65b977d2551b72a9c7 | 0x2000000000000000000000000000000000000000 | 1.17 | 1.17 | 1.43 | 1.43 | 0.61 | 0.61 | 5.37 | 5.37 | 3.87 | 3.87 | 5.23 | 1.90 | 1.90 | 100.00 | 100.00 | USDC | USDC | usdc | Long HYPE | Hypercore | 5,218,102.14 | 1,605,475.19 | 0.87 | 0.00 | 0.10 | 0.00 | 0.00 | VaultFeeMode.internalised_skimming | True | FeeData(fee_mode=<VaultFeeMode.internalised_sk... | FeeData(fee_mode=<VaultFeeMode.internalised_sk... | 0% / 10% (int.) | 1 days | 100 | Hyperliquid | VaultTechnicalRisk.severe | 40 | 9999-0xac26cf5f3c46b5e102048c65b977d2551b72a9c7 | 2025-04-09 | 2026-02-21 | 0xac26cf5f3c46b5e102048c65b977d2551b72a9c7 | 9999 | True | 2025-04-09 | 0.00 | 2026-02-21 | 0.00 | 2.18 | [hypercore_native] | {VaultFlag.perp_dex_trading_vault} | Profit calculations are cleaned from deposit/r... | https://app.hyperliquid.xyz/vaults/0xac26cf5f3... | https://tradingstrategy.ai/trading-view/hyperl... | 2026-01-22 | 2026-02-21 | 13 | 2025-11-19 | 2026-02-21 | 24 | 2025-04-09 | 2026-02-21 | 56 | [PeriodMetrics(period='1W', error_reason=None,... | None | None | None | None | None | None | 70% HYPE 30% BTC long\nShort portfolio may cha... | 70% HYPE 30% BTC long\nShort portfolio may cha... |
| 64 | Tenety | tenety | hyperliquid | 0x8b0f84433ca5f287f0f09f84c5a378beb9d11b05 | 0x2000000000000000000000000000000000000000 | -0.62 | -0.62 | -0.96 | -0.96 | -0.53 | -0.53 | -0.94 | -0.94 | 0.17 | 0.17 | 6.57 | 0.47 | 0.47 | 100.00 | 100.00 | USDC | USDC | usdc | Tenety | Hypercore | 56,693.02 | 55,275.79 | 0.30 | 0.00 | 0.10 | 0.00 | 0.00 | VaultFeeMode.internalised_skimming | True | FeeData(fee_mode=<VaultFeeMode.internalised_sk... | FeeData(fee_mode=<VaultFeeMode.internalised_sk... | 0% / 10% (int.) | 1 days | 3 | Hyperliquid | VaultTechnicalRisk.severe | 40 | 9999-0x8b0f84433ca5f287f0f09f84c5a378beb9d11b05 | 2025-11-05 | 2026-02-21 | 0x8b0f84433ca5f287f0f09f84c5a378beb9d11b05 | 9999 | True | 2025-11-05 | 0.00 | 2026-02-21 | 0.00 | 0.40 | [hypercore_native] | {VaultFlag.perp_dex_trading_vault} | Profit calculations are cleaned from deposit/r... | https://app.hyperliquid.xyz/vaults/0x8b0f84433... | https://tradingstrategy.ai/trading-view/hyperl... | 2026-01-22 | 2026-02-21 | 22 | 2025-11-19 | 2026-02-21 | 33 | 2025-11-05 | 2026-02-21 | 35 | [PeriodMetrics(period='1W', error_reason=None,... | None | None | None | None | None | None | Finding patterns in the middle of chaos | Finding patterns in the middle of chaos |
Top vault list
List top Hyperliquid vaults, formatted for readability
[7]:
from eth_defi.research.vault_metrics import format_lifetime_table
min_tvl = 25_000
lifetime_data_filtered_df = lifetime_data_df[lifetime_data_df["current_nav"] >= min_tvl]
lifetime_data_filtered_df = lifetime_data_filtered_df.sort_values(["one_month_cagr"], ascending=False)
print(f"Vaults filtered by min TVL of ${min_tvl:,}, remaining {len(lifetime_data_filtered_df):,} vaults.")
formatted_df = format_lifetime_table(
lifetime_data_filtered_df,
add_index=True,
add_address=True,
)
print(f"Last update {lifetime_data_filtered_df['last_updated_at'].max()}")
cols_to_move = ["Name", "1M return ann. (net / gross)"]
other_cols = [col for col in formatted_df.columns if col not in cols_to_move]
formatted_df = formatted_df[cols_to_move + other_cols]
print(f"Formatted data for {len(formatted_df):,} vaults.")
# Script output
max_address_dump = 300
head = formatted_df.head(max_address_dump)
vault_count = min(max_address_dump, len(head))
print(f"Top {vault_count} vaults by 1 month annualised return are: {', '.join(head['Name'])}")
print(f"Top {vault_count} vaults by 1 month annualised return are:\n{', '.join(head['Address'])}")
display(formatted_df)
Vaults filtered by min TVL of $25,000, remaining 104 vaults.
Last update 2026-02-21 00:00:00
Formatted data for 97 vaults.
Top 97 vaults by 1 month annualised return are: Long HYPE & BTC | Short Garbage, Tenety, Citadel, Overdose, Goon Edging, [ Systemic Strategies ] ♾️ HyperGrowth ♾️, Wall777, BredoStrategy, Scott Phillips Trading Vault, Bitcoin Moving Average Long/Short, Wonderland, Value token strategy, Elsewhere, +convexity, Crypto Trading Channel, Cryptoaddcited, Gucky_1coin_1dot5x, Picking Winners, -VectorZero-, Loop Fund, Crypto_Lab28, MOAS, Equinox · Blackalgo, Deposit. Forget. Wake up richer, AILAB TEST URTRA', [ Systemic Strategies ] L/S Grids, Hyperliquidity Provider (HLP), RedCoast, Growi HF, Sentiment Edge, Sentiment Edge , Symphony, OnlyShorts, Growi HF-2, HyperSonic, 69 Jump Street, ASTEROID, JizzJazz, alpha-032, HTFV, Jay Pennies to Jay Dollars, HyperNeutral #1, PF1, Orbit Value Strategies, shortStragey, IlllIlllIllIlllIll, Barv A, Akka Hyper AI, Edge & Hedge, LowRiskCryptoGainer, OnlyUP, Archangel Quant Fund I, gaspedal, AceVault Hyper01, AILAB TEST ULTRA, Road to 10 Million, Aquila Chrysaetos, FC Genesis - Quantum, Tortoise Fund, Liquidar Momentum Vault, HyperTwin - Growi HF 2x, R-1, BTC/ETH CTA | AIM, ski lambo beach , BULBUL2DAO, Fund Inception, Darkframe, Super Saiyan 孫悟空, 22Cap, Hyperdash Vault #1, Jade Lotus Capital, AnnA, [ Tachyon ] HYPE , Sifu, Pulse@Evo-α, Coinseer_AI, Martyrbit, hidden marko fund, reverse mid curver, 100x , Ultron, Black Ops, Satori Quantum HF Vault, Delta_01, IQ [L/S], PCC, drkmttr, Opportunistic Fund 1, Hyperliquidity Trader (HLT), Tera Liquid, Coinseer2, MC Recovery Fund, DailyTradeAI Low risk, Winwin, Long LINK Short XRP, Mattertrades, SMM Foundation
Top 97 vaults by 1 month annualised return are:
0xac26cf5f3c46b5e102048c65b977d2551b72a9c7, 0x8b0f84433ca5f287f0f09f84c5a378beb9d11b05, 0xda51323fe9800c8365646ad5c7ade0dd17fdc167, 0xe67dbf2d051106b42104c1a6631af5e5a458b682, 0x2431edfcb662e6ff6deab113cc91878a0b53fb0f, 0xd6e56265890b76413d1d527eb9b75e334c0c5b42, 0x43eabf1421922d658e80cb5f7c4a65e6cfc697e1, 0x654016a8c9fcf0c4cb7ed6078aba21f7f399f7b7, 0x1840bdb83caff17de910ec407cafb817678786b5, 0xb1505ad1a4c7755e0eb236aa2f4327bfc3474768, 0x9a88dd4eacc3aa561c4f50ec66bcede831bec813, 0x36dc8d4188c57008b7ddbc21662ef28a88a9c684, 0x8fc7c0442e582bca195978c5a4fdec2e7c5bb0f7, 0x5661a070eb13c7c55ac3210b2447d4bea426cbf5, 0x51b62b4bf8df6f2795b3da30cb46aa47f9f230a8, 0x5108cd0a328ed28c277f958761fe1cda60c21aa8, 0xd2f03635901956b950737bbf02463dfad9f2e9e1, 0x1fec994c4dd99e126643698ae6b3253cef5ff3d6, 0x241ba250828c6a1289330aeec301e7bdcef31a43, 0xfeab64de8cdf9dcebc0f49812499e396273efc06, 0xb11fe7f2e97bd02b2da909b32f4a5e7fcb0df099, 0x29b98aaf8eeb316385fe2ed1af564bdc4b03ffd6, 0x7048b287889c5913d59f812795d7fd5d724be77a, 0x253b88ebaa7c321d4803c0cfaf708684e3de32be, 0x21edf2d791f626ee69352120e7f6e2fbb0f48cf1, 0x07fd993f0fa3a185f7207adccd29f7a87404689d, 0xdfc24b077bc1425ad1dea75bcb6f8158e10df303, 0x8fafc23611d59310b957162b8479f354c5a0eb4d, 0x1e37a337ed460039d1b15bd3bc489de789768d5e, 0x026a2e082a03200a00a97974b7bf7753ce33540f, 0xb7e7d0fdeff5473ed6ef8d3a762d096a040dbb18, 0x9114a5161f18739ced233190861ea275c8b3a99b, 0x61b1cf5c2d7c4bf6d5db14f36651b2242e7cba0a, 0x9b5b1931fa5838a891973f9877c7648c93ee80cc, 0x071a1341c9d00a5537ff4bf8289049f045fe3abb, 0xa844d7ac9fa3424c4fd38a25baa23e460ec3e802, 0x9a28b01435ca5c4b39a79ae2c27fce01292a7f39, 0x82eba5dc675279cb5967952f0c4b5184505eb17c, 0x7d97f7cb48ecc966d75a746b811ca93f1fd6e7ef, 0x494b62d7dc3b0b221fd6149f4b15374736219c05, 0x3b4f22366857da94f9346f88eac84718c8a8d48d, 0x8bb033130be354eed1110ce7228d7095f001d9fe, 0xa1b6d8efbcb2fb750a84dbc05649fa4968034f04, 0x115849ce84370f25cadcf0d348510d73837e1aa5, 0xb4d96c7387a45fa2cb170fa1436a86640ab00eb1, 0x0cfeaf978d691e35e86b46e7f8fa4582ff74e3d3, 0x33821578405bd53f0eed2895496922b528d95e21, 0x0e008684ae576f280c5426a89d3f5e1da1fc7398, 0x060d01aa996003b3731a992462d7f0ba68bf3b04, 0xd57c9295947b5a616a3933344ef03a1ad67318ea, 0x7cd7ea8a61e48fc48f5a18502c0622e53d159347, 0x8c7bd04cf8d00d68ce8bc7d2f3f02f98d16a5ab0, 0xff9152cce6fbd30988b1aef70df6f086c99e2c55, 0x9e02aca9865e1859bb7865f6f64801e804a173df, 0x780825f3f0ad6799e304fb843387934c1fa06e70, 0x04027058bb4aff889402ffb6e4743a96ce88149a, 0x50e2fe552727a4b8692c192b4f96d1a6b0d44394, 0xa6a34f0bf2ccea9a1ddf9e9a973f17c498dc5e40, 0xd914c5164bc253676386269d90dcf56b441cf75b, 0x5ba4c8d16464621608b7333fd44b1e74a1b8d189, 0x15be61aef0ea4e4dc93c79b668f26b3f1be75a66, 0x77a0f8bae276f489f0f7cc2752322805317dcbb1, 0xbeebbbe817a69d60dd62e0a942032bc5414dae1c, 0x66e541024ca4c50b8f6c0934b8947c487d211661, 0x65aee08c9235025355ac6c5ad020fb167ecef4fe, 0xce56eb8261493462e3eb00a72c2bda2cb5fdccee, 0x565ab99e1515c6dd3b8852b15354638d467f999a, 0x7c5885d2974457eafb1a3a4d848c358111f0714d, 0xba939edf38c0ae0cc689c98b492e0535f43e4550, 0x4078582c42fdb547b1397fabb5d5a4beab81be9e, 0xbc5bf88fd012612ba92c5bd96e183955801b7fdc, 0x4391c22edeece3a9aa5b8f3c1a3a25378980ff10, 0x131ab0c5032079bb9286ffc1828e11d5931e77bb, 0xf967239debef10dbc78e9bbbb2d8a16b72a614eb, 0x22a60014185f1486afb045219f76e4007fb71e4e, 0xf36e402dbc9e6e904e719f680dc056c9d57cca24, 0x27d33e77c8e6335089f56e399bf706ae9ad402b9, 0xc497f1f8840dd65affbab1a610b6e558844743d4, 0x797327122c5ed1b1530e452b7f8723ba834b4c6a, 0xa0cbceaac4dc736c457b7c340865695e2b3d0fc9, 0x45e7014f092c5f9c39482caec131346f13ac5e73, 0x49a648936441b22f28f069d3c088928682b277ae, 0xbbf7d7a9d0eaeab4115f022a6863450296112422, 0x3005fade4c0df5e1cd187d7062da359416f0eb8e, 0x3fe404ae27cc5eef4a08e226ae2ac4f5be7a06c4, 0x65dfa218376939c7e18a6fb8e264ed261b5f9e92, 0xc179e03922afe8fa9533d3f896338b9fb87ce0c8, 0xfb7b73ff7c93f5552541de37454ffa0f8b76462a, 0x5a733b25a17dc0f26b862ca9e32b439801b1a8c7, 0x15a141990fc6591838646467273c41c92999772f, 0x8b1a2e764fd2976506fdb00035a948929b2f3198, 0x914434e8a235cb608a94a5f70ab8c40927152a24, 0x44ff912d0f88e27419ec0ddc950096609a9b6997, 0xa7f152a5f79bb5483c079610203d8fc03fd77c8e, 0x73ce82fb75868af2a687e9889fcf058dd1cf8ce9, 0x4158f13cfa57657f91000fa8b83580dccd4ffce9, 0x45bae5219bbbcce476e8ac92c26593ad9ba93d01
| Name | 1M return ann. (net / gross) | Lifetime return abs. (net / gross) | Lifetime return ann. (net / gross) | 3M return ann. (net / gross) | 3M sharpe | 3M volatility | Denomination | Chain | TVL USD (current / peak) | Age (years) | Fees (mgmt / perf / dep / with) | Lock up est. days | Deposit events | Protocol | Risk | id | Flags | Notes | Link | Deposit closed reason | Redemption closed reason | Deposit next open | Redemption next open | Available liquidity | Utilisation | Address | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| # | |||||||||||||||||||||||||||
| 1 | Long HYPE & BTC | Short Garbage | 10000.0% (10000.0%) | 116.5% (116.5%) | 142.9% (142.9%) | 537.4% (537.4%) | 3.9 | 523.3% | USDC | Hypercore | 1,605,475 (5,218,102) | 0.87 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0xac26cf5f3c46b5e102048c65b977d2551b72a9c7 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0xac26cf5f3c46b5e102048c65b977d2551b72a9c7 |
| 2 | Tenety | 10000.0% (10000.0%) | -61.6% (-61.6%) | -96.1% (-96.1%) | -94.5% (-94.5%) | 0.2 | 657.1% | USDC | Hypercore | 55,276 (56,693) | 0.30 | 0% / 10% (int.) | 1 | 3 | Hyperliquid | Severe | 9999-0x8b0f84433ca5f287f0f09f84c5a378beb9d11b05 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x8b0f84433ca5f287f0f09f84c5a378beb9d11b05 |
| 3 | Citadel | 10000.0% (10000.0%) | 3990.5% (3990.5%) | 420.2% (420.2%) | 102.3% (102.3%) | 3.0 | 275.6% | USDC | Hypercore | 527,395 (533,008) | 2.25 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0xda51323fe9800c8365646ad5c7ade0dd17fdc167 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0xda51323fe9800c8365646ad5c7ade0dd17fdc167 |
| 4 | Overdose | 10000.0% (10000.0%) | 136.4% (136.4%) | 7309.6% (7309.6%) | 7309.6% (7309.6%) | 5.7 | 117.4% | USDC | Hypercore | 565,110 (565,110) | 0.20 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0xe67dbf2d051106b42104c1a6631af5e5a458b682 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0xe67dbf2d051106b42104c1a6631af5e5a458b682 |
| 5 | Goon Edging | 10000.0% (10000.0%) | 148.8% (148.8%) | 139.6% (139.6%) | 365.5% (365.5%) | 4.2 | 349.4% | USDC | Hypercore | 85,946 (100,099) | 1.04 | 0% / 10% (int.) | 1 | 36 | Hyperliquid | Severe | 9999-0x2431edfcb662e6ff6deab113cc91878a0b53fb0f | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x2431edfcb662e6ff6deab113cc91878a0b53fb0f |
| 6 | [ Systemic Strategies ] ♾️ HyperGrowth ♾️ | 10000.0% (10000.0%) | 37.8% (37.8%) | 98.5% (98.5%) | 48.8% (48.8%) | 1.7 | 459.3% | USDC | Hypercore | 6,414,595 (7,241,294) | 0.47 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0xd6e56265890b76413d1d527eb9b75e334c0c5b42 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0xd6e56265890b76413d1d527eb9b75e334c0c5b42 |
| 7 | Wall777 | 2635.4% (2635.4%) | 88.0% (88.0%) | 2254.0% (2254.0%) | 2254.0% (2254.0%) | 4.4 | 85.5% | USDC | Hypercore | 53,107 (53,686) | 0.20 | 0% / 10% (int.) | 1 | 9 | Hyperliquid | Severe | 9999-0x43eabf1421922d658e80cb5f7c4a65e6cfc697e1 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x43eabf1421922d658e80cb5f7c4a65e6cfc697e1 |
| 8 | BredoStrategy | 2100.6% (2100.6%) | 3.4% (3.4%) | 2100.6% (2100.6%) | 2100.6% (2100.6%) | 3.1 | 114.9% | USDC | Hypercore | 1,481,304 (1,481,304) | 0.01 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0x654016a8c9fcf0c4cb7ed6078aba21f7f399f7b7 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x654016a8c9fcf0c4cb7ed6078aba21f7f399f7b7 |
| 9 | Scott Phillips Trading Vault | 2022.2% (2022.2%) | -11.3% (-11.3%) | -11.5% (-11.5%) | 136.0% (136.0%) | 3.1 | 156.8% | USDC | Hypercore | 1,296,265 (1,506,754) | 0.99 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0x1840bdb83caff17de910ec407cafb817678786b5 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x1840bdb83caff17de910ec407cafb817678786b5 |
| 10 | Bitcoin Moving Average Long/Short | 1782.8% (1782.8%) | 6.4% (6.4%) | 18.2% (18.2%) | 72.2% (72.2%) | 2.0 | 45.1% | USDC | Hypercore | 3,468,831 (3,896,312) | 0.37 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0xb1505ad1a4c7755e0eb236aa2f4327bfc3474768 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0xb1505ad1a4c7755e0eb236aa2f4327bfc3474768 |
| 11 | Wonderland | 1300.1% (1300.1%) | -13.7% (-13.7%) | -21.7% (-21.7%) | -48.4% (-48.4%) | 0.9 | 308.9% | USDC | Hypercore | 112,612 (286,098) | 0.60 | 0% / 10% (int.) | 1 | 54 | Hyperliquid | Severe | 9999-0x9a88dd4eacc3aa561c4f50ec66bcede831bec813 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x9a88dd4eacc3aa561c4f50ec66bcede831bec813 |
| 12 | Value token strategy | 961.0% (961.0%) | 6.0% (6.0%) | 961.0% (961.0%) | 961.0% (961.0%) | 3.1 | 88.5% | USDC | Hypercore | 106,264 (114,636) | 0.02 | 0% / 10% (int.) | 1 | 1 | Hyperliquid | Severe | 9999-0x36dc8d4188c57008b7ddbc21662ef28a88a9c684 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x36dc8d4188c57008b7ddbc21662ef28a88a9c684 |
| 13 | Elsewhere | 898.1% (898.1%) | 174.3% (174.3%) | 86.6% (86.6%) | 901.6% (901.6%) | 8.6 | 8.2% | USDC | Hypercore | 511,098 (1,783,212) | 1.62 | 0% / 10% (int.) | 1 | 60 | Hyperliquid | Severe | 9999-0x8fc7c0442e582bca195978c5a4fdec2e7c5bb0f7 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x8fc7c0442e582bca195978c5a4fdec2e7c5bb0f7 |
| 14 | +convexity | 827.2% (827.2%) | 15.5% (15.5%) | 34.5% (34.5%) | 49.8% (49.8%) | 2.4 | 0.4% | USDC | Hypercore | 497,416 (519,933) | 0.49 | 0% / 10% (int.) | 1 | 20 | Hyperliquid | Severe | 9999-0x5661a070eb13c7c55ac3210b2447d4bea426cbf5 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x5661a070eb13c7c55ac3210b2447d4bea426cbf5 |
| 15 | Crypto Trading Channel | 500.8% (500.8%) | 33.6% (33.6%) | 26.9% (26.9%) | 131.3% (131.3%) | 8.6 | 27.6% | USDC | Hypercore | 83,176 (85,016) | 1.22 | 0% / 10% (int.) | 1 | 11 | Hyperliquid | Severe | 9999-0x51b62b4bf8df6f2795b3da30cb46aa47f9f230a8 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x51b62b4bf8df6f2795b3da30cb46aa47f9f230a8 |
| 16 | Cryptoaddcited | 447.6% (447.6%) | 43.3% (43.3%) | 39.5% (39.5%) | 11.4% (11.4%) | 0.9 | 32.0% | USDC | Hypercore | 162,709 (199,566) | 1.08 | 0% / 10% (int.) | 1 | 54 | Hyperliquid | Severe | 9999-0x5108cd0a328ed28c277f958761fe1cda60c21aa8 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x5108cd0a328ed28c277f958761fe1cda60c21aa8 |
| 17 | Gucky_1coin_1dot5x | 423.9% (423.9%) | 215.5% (215.5%) | 189.4% (189.4%) | 18.6% (18.6%) | 1.4 | 50.7% | USDC | Hypercore | 82,828 (88,895) | 1.08 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0xd2f03635901956b950737bbf02463dfad9f2e9e1 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0xd2f03635901956b950737bbf02463dfad9f2e9e1 |
| 18 | Picking Winners | 299.9% (299.9%) | 19.1% (19.1%) | 97.4% (97.4%) | 97.4% (97.4%) | 1.8 | 163.0% | USDC | Hypercore | 121,548 (132,785) | 0.26 | 0% / 10% (int.) | 1 | 11 | Hyperliquid | Severe | 9999-0x1fec994c4dd99e126643698ae6b3253cef5ff3d6 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x1fec994c4dd99e126643698ae6b3253cef5ff3d6 |
| 19 | -VectorZero- | 242.6% (242.6%) | 100.0% (100.0%) | 83.8% (83.8%) | -29.5% (-29.5%) | 0.8 | 171.9% | USDC | Hypercore | 59,815 (201,829) | 1.14 | 0% / 10% (int.) | 1 | 58 | Hyperliquid | Severe | 9999-0x241ba250828c6a1289330aeec301e7bdcef31a43 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x241ba250828c6a1289330aeec301e7bdcef31a43 |
| 20 | Loop Fund | 240.2% (240.2%) | 321.9% (321.9%) | 541.1% (541.1%) | -22.2% (-22.2%) | 0.7 | 238.1% | USDC | Hypercore | 151,781 (179,533) | 0.77 | 0% / 10% (int.) | 1 | 44 | Hyperliquid | Severe | 9999-0xfeab64de8cdf9dcebc0f49812499e396273efc06 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0xfeab64de8cdf9dcebc0f49812499e396273efc06 |
| 21 | Crypto_Lab28 | 204.5% (204.5%) | 32.0% (32.0%) | 56.3% (56.3%) | -64.2% (-64.2%) | 0.1 | 178.6% | USDC | Hypercore | 142,799 (196,561) | 0.62 | 0% / 10% (int.) | 1 | 21 | Hyperliquid | Severe | 9999-0xb11fe7f2e97bd02b2da909b32f4a5e7fcb0df099 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0xb11fe7f2e97bd02b2da909b32f4a5e7fcb0df099 |
| 22 | MOAS | 199.5% (199.5%) | -4.8% (-4.8%) | -3.9% (-3.9%) | 961.7% (961.7%) | 4.2 | 15.3% | USDC | Hypercore | 118,765 (123,903) | 1.23 | 0% / 10% (int.) | 1 | 5 | Hyperliquid | Severe | 9999-0x29b98aaf8eeb316385fe2ed1af564bdc4b03ffd6 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x29b98aaf8eeb316385fe2ed1af564bdc4b03ffd6 |
| 23 | Equinox · Blackalgo | 191.3% (191.3%) | 9.2% (9.2%) | 164.3% (164.3%) | 164.3% (164.3%) | 1.8 | 67.3% | USDC | Hypercore | 1,173,447 (1,204,780) | 0.09 | 0% / 10% (int.) | 1 | 30 | Hyperliquid | Severe | 9999-0x7048b287889c5913d59f812795d7fd5d724be77a | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x7048b287889c5913d59f812795d7fd5d724be77a |
| 24 | Deposit. Forget. Wake up richer | 163.5% (163.5%) | -38.1% (-38.1%) | -68.9% (-68.9%) | -66.1% (-66.1%) | -3.8 | 44.4% | USDC | Hypercore | 341,466 (366,820) | 0.41 | 0% / 10% (int.) | 1 | 1 | Hyperliquid | Severe | 9999-0x253b88ebaa7c321d4803c0cfaf708684e3de32be | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x253b88ebaa7c321d4803c0cfaf708684e3de32be |
| 25 | AILAB TEST URTRA' | 146.7% (146.7%) | 12.8% (12.8%) | 218.5% (218.5%) | 218.5% (218.5%) | 5.6 | 22.4% | USDC | Hypercore | 421,060 (441,583) | 0.10 | 0% / 10% (int.) | 1 | 14 | Hyperliquid | Severe | 9999-0x21edf2d791f626ee69352120e7f6e2fbb0f48cf1 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x21edf2d791f626ee69352120e7f6e2fbb0f48cf1 |
| 26 | [ Systemic Strategies ] L/S Grids | 109.8% (109.8%) | 61.4% (61.4%) | 56.9% (56.9%) | 36.1% (36.1%) | 1.8 | 40.5% | USDC | Hypercore | 3,142,835 (4,713,536) | 1.06 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0x07fd993f0fa3a185f7207adccd29f7a87404689d | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x07fd993f0fa3a185f7207adccd29f7a87404689d |
| 27 | Hyperliquidity Provider (HLP) | 102.2% (102.2%) | 175.9% (175.9%) | 43.9% (43.9%) | 28.1% (28.1%) | 6.4 | 0.1% | USDC | Hypercore | 381,918,480 (603,904,920) | 2.79 | 0% / 0% | 4 | 100 | Hyperliquid | Severe | 9999-0xdfc24b077bc1425ad1dea75bcb6f8158e10df303 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0xdfc24b077bc1425ad1dea75bcb6f8158e10df303 |
| 28 | RedCoast | 65.7% (65.7%) | 3.8% (3.8%) | 53.4% (53.4%) | 53.4% (53.4%) | 2.6 | 17.1% | USDC | Hypercore | 104,188 (104,228) | 0.09 | 0% / 10% (int.) | 1 | 1 | Hyperliquid | Severe | 9999-0x8fafc23611d59310b957162b8479f354c5a0eb4d | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x8fafc23611d59310b957162b8479f354c5a0eb4d |
| 29 | Growi HF | 62.7% (62.7%) | 132.4% (132.4%) | 68.4% (68.4%) | 36.2% (36.2%) | 2.0 | 80.9% | USDC | Hypercore | 6,510,826 (8,162,994) | 1.62 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0x1e37a337ed460039d1b15bd3bc489de789768d5e | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x1e37a337ed460039d1b15bd3bc489de789768d5e |
| 30 | Sentiment Edge | 56.3% (56.3%) | 116.6% (116.6%) | 109.8% (109.8%) | 12.1% (12.1%) | 0.8 | 7.2% | USDC | Hypercore | 175,650 (257,679) | 1.04 | 0% / 10% (int.) | 1 | 90 | Hyperliquid | Severe | 9999-0x026a2e082a03200a00a97974b7bf7753ce33540f | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x026a2e082a03200a00a97974b7bf7753ce33540f |
| 31 | Sentiment Edge | 51.2% (51.2%) | 93.0% (93.0%) | 94.9% (94.9%) | 44.1% (44.1%) | 1.8 | 11.8% | USDC | Hypercore | 166,931 (286,536) | 0.99 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0xb7e7d0fdeff5473ed6ef8d3a762d096a040dbb18 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0xb7e7d0fdeff5473ed6ef8d3a762d096a040dbb18 |
| 32 | Symphony | 50.8% (50.8%) | 36.5% (36.5%) | 94.3% (94.3%) | 6.0% (6.0%) | 0.6 | 9.5% | USDC | Hypercore | 396,547 (916,425) | 0.47 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0x9114a5161f18739ced233190861ea275c8b3a99b | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x9114a5161f18739ced233190861ea275c8b3a99b |
| 33 | OnlyShorts | 50.2% (50.2%) | 41.1% (41.1%) | 164.9% (164.9%) | 88.0% (88.0%) | 5.2 | 17.2% | USDC | Hypercore | 762,426 (767,966) | 0.35 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0x61b1cf5c2d7c4bf6d5db14f36651b2242e7cba0a | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x61b1cf5c2d7c4bf6d5db14f36651b2242e7cba0a |
| 34 | Growi HF-2 | 47.3% (47.3%) | 115.3% (115.3%) | 128.5% (128.5%) | 37.1% (37.1%) | 1.4 | 305.8% | USDC | Hypercore | 303,137 (503,943) | 0.93 | 0% / 10% (int.) | 1 | 3 | Hyperliquid | Severe | 9999-0x9b5b1931fa5838a891973f9877c7648c93ee80cc | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x9b5b1931fa5838a891973f9877c7648c93ee80cc |
| 35 | HyperSonic | 45.3% (45.3%) | 2.9% (2.9%) | 45.3% (45.3%) | 45.3% (45.3%) | 0.8 | 81.4% | USDC | Hypercore | 77,645 (146,408) | 0.08 | 0% / 10% (int.) | 1 | 6 | Hyperliquid | Severe | 9999-0x071a1341c9d00a5537ff4bf8289049f045fe3abb | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x071a1341c9d00a5537ff4bf8289049f045fe3abb |
| 36 | 69 Jump Street | 32.5% (32.5%) | 66.6% (66.6%) | 60.3% (60.3%) | -19.1% (-19.1%) | -2.5 | 4.5% | USDC | Hypercore | 606,545 (1,067,444) | 1.08 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0xa844d7ac9fa3424c4fd38a25baa23e460ec3e802 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0xa844d7ac9fa3424c4fd38a25baa23e460ec3e802 |
| 37 | ASTEROID | 27.3% (27.3%) | 23.3% (23.3%) | 75.6% (75.6%) | 19.6% (19.6%) | 1.5 | 16.0% | USDC | Hypercore | 366,750 (370,107) | 0.37 | 0% / 10% (int.) | 1 | 15 | Hyperliquid | Severe | 9999-0x9a28b01435ca5c4b39a79ae2c27fce01292a7f39 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x9a28b01435ca5c4b39a79ae2c27fce01292a7f39 |
| 38 | JizzJazz | 21.5% (21.5%) | 182.1% (182.1%) | 75.3% (75.3%) | -26.6% (-26.6%) | -2.3 | 10.9% | USDC | Hypercore | 356,763 (389,724) | 1.85 | 0% / 10% (int.) | 1 | 31 | Hyperliquid | Severe | 9999-0x82eba5dc675279cb5967952f0c4b5184505eb17c | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x82eba5dc675279cb5967952f0c4b5184505eb17c |
| 39 | alpha-032 | 15.5% (15.5%) | 0.6% (0.6%) | 15.5% (15.5%) | 15.5% (15.5%) | 0.5 | 64.8% | USDC | Hypercore | 119,850 (159,013) | 0.04 | 0% / 10% (int.) | 1 | 2 | Hyperliquid | Severe | 9999-0x7d97f7cb48ecc966d75a746b811ca93f1fd6e7ef | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x7d97f7cb48ecc966d75a746b811ca93f1fd6e7ef |
| 40 | HTFV | 15.0% (15.0%) | -0.2% (-0.2%) | -0.7% (-0.7%) | -0.7% (-0.7%) | 0.7 | 98.0% | USDC | Hypercore | 99,812 (113,687) | 0.26 | 0% / 10% (int.) | 1 | 2 | Hyperliquid | Severe | 9999-0x494b62d7dc3b0b221fd6149f4b15374736219c05 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x494b62d7dc3b0b221fd6149f4b15374736219c05 |
| 41 | Jay Pennies to Jay Dollars | 7.8% (7.8%) | 18.5% (18.5%) | 22.6% (22.6%) | 7.1% (7.1%) | 4.2 | 3.4% | USDC | Hypercore | 162,659 (193,980) | 0.83 | 0% / 10% (int.) | 1 | 19 | Hyperliquid | Severe | 9999-0x3b4f22366857da94f9346f88eac84718c8a8d48d | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x3b4f22366857da94f9346f88eac84718c8a8d48d |
| 42 | HyperNeutral #1 | 7.0% (7.0%) | 18.6% (18.6%) | 30.6% (30.6%) | 77.6% (77.6%) | 4.9 | 12.1% | USDC | Hypercore | 68,010 (88,229) | 0.64 | 0% / 10% (int.) | 1 | 23 | Hyperliquid | Severe | 9999-0x8bb033130be354eed1110ce7228d7095f001d9fe | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x8bb033130be354eed1110ce7228d7095f001d9fe |
| 43 | PF1 | 4.3% (4.3%) | 33.5% (33.5%) | 53.0% (53.0%) | 16.2% (16.2%) | 1.5 | 28.4% | USDC | Hypercore | 166,978 (205,788) | 0.68 | 0% / 10% (int.) | 1 | 3 | Hyperliquid | Severe | 9999-0xa1b6d8efbcb2fb750a84dbc05649fa4968034f04 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0xa1b6d8efbcb2fb750a84dbc05649fa4968034f04 |
| 44 | Orbit Value Strategies | 3.5% (3.5%) | -3.1% (-3.1%) | -16.2% (-16.2%) | -16.2% (-16.2%) | -0.9 | 25.9% | USDC | Hypercore | 2,932,232 (3,262,045) | 0.18 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0x115849ce84370f25cadcf0d348510d73837e1aa5 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x115849ce84370f25cadcf0d348510d73837e1aa5 |
| 45 | shortStragey | 0.1% (0.1%) | -69.9% (-69.9%) | -88.1% (-88.1%) | -99.9% (-99.9%) | -3.4 | 0.1% | USDC | Hypercore | 65,355 (65,355) | 0.56 | 0% / 10% (int.) | 1 | 12 | Hyperliquid | Severe | 9999-0xb4d96c7387a45fa2cb170fa1436a86640ab00eb1 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0xb4d96c7387a45fa2cb170fa1436a86640ab00eb1 |
| 46 | IlllIlllIllIlllIll | -0.0% (-0.0%) | -11.7% (-11.7%) | -34.5% (-34.5%) | 39.4% (39.4%) | 1.4 | 0.0% | USDC | Hypercore | 69,556 (156,167) | 0.30 | 0% / 10% (int.) | 1 | 5 | Hyperliquid | Severe | 9999-0x0cfeaf978d691e35e86b46e7f8fa4582ff74e3d3 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x0cfeaf978d691e35e86b46e7f8fa4582ff74e3d3 |
| 47 | Barv A | -0.0% (-0.0%) | 188.8% (188.8%) | 181.7% (181.7%) | 9.5% (9.5%) | 5.9 | 0.0% | USDC | Hypercore | 121,509 (121,526) | 1.02 | 0% / 10% (int.) | 1 | 35 | Hyperliquid | Severe | 9999-0x33821578405bd53f0eed2895496922b528d95e21 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x33821578405bd53f0eed2895496922b528d95e21 |
| 48 | Akka Hyper AI | -0.7% (-0.7%) | -0.3% (-0.3%) | -1.2% (-1.2%) | 4.2% (4.2%) | 0.8 | 1.3% | USDC | Hypercore | 59,065 (71,098) | 0.28 | 0% / 10% (int.) | 1 | 5 | Hyperliquid | Severe | 9999-0x0e008684ae576f280c5426a89d3f5e1da1fc7398 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x0e008684ae576f280c5426a89d3f5e1da1fc7398 |
| 49 | Edge & Hedge | -13.2% (-13.2%) | -17.9% (-17.9%) | -62.8% (-62.8%) | -62.8% (-62.8%) | -2.9 | 45.5% | USDC | Hypercore | 258,478 (317,891) | 0.20 | 0% / 10% (int.) | 1 | 13 | Hyperliquid | Severe | 9999-0x060d01aa996003b3731a992462d7f0ba68bf3b04 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x060d01aa996003b3731a992462d7f0ba68bf3b04 |
| 50 | LowRiskCryptoGainer | -16.5% (-16.5%) | 55.6% (55.6%) | 33.7% (33.7%) | 2.7% (2.7%) | 0.7 | 3.9% | USDC | Hypercore | 134,445 (141,972) | 1.52 | 0% / 10% (int.) | 1 | 54 | Hyperliquid | Severe | 9999-0xd57c9295947b5a616a3933344ef03a1ad67318ea | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0xd57c9295947b5a616a3933344ef03a1ad67318ea |
| 51 | OnlyUP | -18.2% (-18.2%) | -30.9% (-30.9%) | -17.3% (-17.3%) | -43.9% (-43.9%) | -5.9 | 0.0% | USDC | Hypercore | 74,300 (92,173) | 1.94 | 0% / 10% (int.) | 1 | 10 | Hyperliquid | Severe | 9999-0x7cd7ea8a61e48fc48f5a18502c0622e53d159347 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x7cd7ea8a61e48fc48f5a18502c0622e53d159347 |
| 52 | Archangel Quant Fund I | -20.1% (-20.1%) | 56.1% (56.1%) | 195.7% (195.7%) | 158.8% (158.8%) | 5.2 | 28.7% | USDC | Hypercore | 238,108 (247,651) | 0.41 | 0% / 10% (int.) | 1 | 38 | Hyperliquid | Severe | 9999-0x8c7bd04cf8d00d68ce8bc7d2f3f02f98d16a5ab0 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x8c7bd04cf8d00d68ce8bc7d2f3f02f98d16a5ab0 |
| 53 | gaspedal | -20.4% (-20.4%) | 104.9% (104.9%) | 94.1% (94.1%) | -68.8% (-68.8%) | -0.9 | 187.2% | USDC | Hypercore | 161,776 (224,642) | 1.08 | 0% / 10% (int.) | 1 | 48 | Hyperliquid | Severe | 9999-0xff9152cce6fbd30988b1aef70df6f086c99e2c55 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0xff9152cce6fbd30988b1aef70df6f086c99e2c55 |
| 54 | AceVault Hyper01 | -23.4% (-23.4%) | 1.5% (1.5%) | 2.9% (2.9%) | -6.1% (-6.1%) | -0.2 | 16.9% | USDC | Hypercore | 445,859 (18,052,373) | 0.51 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0x9e02aca9865e1859bb7865f6f64801e804a173df | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x9e02aca9865e1859bb7865f6f64801e804a173df |
| 55 | AILAB TEST ULTRA | -23.7% (-23.7%) | 0.9% (0.9%) | 6.4% (6.4%) | 6.4% (6.4%) | 0.4 | 28.8% | USDC | Hypercore | 397,681 (397,681) | 0.14 | 0% / 10% (int.) | 1 | 5 | Hyperliquid | Severe | 9999-0x780825f3f0ad6799e304fb843387934c1fa06e70 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x780825f3f0ad6799e304fb843387934c1fa06e70 |
| 56 | Road to 10 Million | -28.3% (-28.3%) | 82.9% (82.9%) | 57.4% (57.4%) | -15.5% (-15.5%) | -5.0 | 0.0% | USDC | Hypercore | 141,859 (254,560) | 1.33 | 0% / 10% (int.) | 1 | 4 | Hyperliquid | Severe | 9999-0x04027058bb4aff889402ffb6e4743a96ce88149a | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x04027058bb4aff889402ffb6e4743a96ce88149a |
| 57 | Aquila Chrysaetos | -29.9% (-29.9%) | 20.0% (20.0%) | 39.6% (39.6%) | 16.4% (16.4%) | 2.4 | 11.9% | USDC | Hypercore | 72,332 (78,581) | 0.54 | 0% / 10% (int.) | 1 | 16 | Hyperliquid | Severe | 9999-0x50e2fe552727a4b8692c192b4f96d1a6b0d44394 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x50e2fe552727a4b8692c192b4f96d1a6b0d44394 |
| 58 | FC Genesis - Quantum | -30.7% (-30.7%) | -13.8% (-13.8%) | -29.2% (-29.2%) | -18.9% (-18.9%) | -7.1 | 0.0% | USDC | Hypercore | 2,546,153 (2,801,933) | 0.43 | 0% / 10% (int.) | 1 | 55 | Hyperliquid | Severe | 9999-0xa6a34f0bf2ccea9a1ddf9e9a973f17c498dc5e40 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0xa6a34f0bf2ccea9a1ddf9e9a973f17c498dc5e40 |
| 59 | Tortoise Fund | -38.8% (-38.8%) | -9.1% (-9.1%) | -13.1% (-13.1%) | -11.6% (-11.6%) | 0.3 | 40.6% | USDC | Hypercore | 159,130 (202,815) | 0.68 | 0% / 10% (int.) | 1 | 30 | Hyperliquid | Severe | 9999-0xd914c5164bc253676386269d90dcf56b441cf75b | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0xd914c5164bc253676386269d90dcf56b441cf75b |
| 60 | Liquidar Momentum Vault | -39.1% (-39.1%) | -9.8% (-9.8%) | -37.5% (-37.5%) | -37.5% (-37.5%) | -0.8 | 37.1% | USDC | Hypercore | 57,107 (62,883) | 0.22 | 0% / 10% (int.) | 1 | 6 | Hyperliquid | Severe | 9999-0x5ba4c8d16464621608b7333fd44b1e74a1b8d189 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x5ba4c8d16464621608b7333fd44b1e74a1b8d189 |
| 61 | HyperTwin - Growi HF 2x | -39.6% (-39.6%) | 0.7% (0.7%) | 1.0% (1.0%) | 45.9% (45.9%) | 2.0 | 466.7% | USDC | Hypercore | 132,720 (702,686) | 0.64 | 0% / 10% (int.) | 1 | 111 | Hyperliquid | Severe | 9999-0x15be61aef0ea4e4dc93c79b668f26b3f1be75a66 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x15be61aef0ea4e4dc93c79b668f26b3f1be75a66 |
| 62 | R-1 | -40.0% (-40.0%) | -4.7% (-4.7%) | -28.6% (-28.6%) | -28.6% (-28.6%) | -1.0 | 34.1% | USDC | Hypercore | 56,240 (63,857) | 0.14 | 0% / 10% (int.) | 1 | 1 | Hyperliquid | Severe | 9999-0x77a0f8bae276f489f0f7cc2752322805317dcbb1 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x77a0f8bae276f489f0f7cc2752322805317dcbb1 |
| 63 | BTC/ETH CTA | AIM | -52.3% (-52.3%) | 12.6% (12.6%) | 21.0% (21.0%) | 4.1% (4.1%) | 0.5 | 30.5% | USDC | Hypercore | 98,554 (141,407) | 0.62 | 0% / 10% (int.) | 1 | 8 | Hyperliquid | Severe | 9999-0xbeebbbe817a69d60dd62e0a942032bc5414dae1c | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0xbeebbbe817a69d60dd62e0a942032bc5414dae1c |
| 64 | ski lambo beach | -55.0% (-55.0%) | 257.6% (257.6%) | 247.1% (247.1%) | -3.9% (-3.9%) | 0.1 | 43.6% | USDC | Hypercore | 143,295 (225,167) | 1.02 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0x66e541024ca4c50b8f6c0934b8947c487d211661 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x66e541024ca4c50b8f6c0934b8947c487d211661 |
| 65 | BULBUL2DAO | -59.6% (-59.6%) | 182.6% (182.6%) | 141.7% (141.7%) | 14.6% (14.6%) | 1.3 | 246.2% | USDC | Hypercore | 95,132 (305,011) | 1.18 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0x65aee08c9235025355ac6c5ad020fb167ecef4fe | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x65aee08c9235025355ac6c5ad020fb167ecef4fe |
| 66 | Fund Inception | -62.1% (-62.1%) | -7.7% (-7.7%) | -32.9% (-32.9%) | -32.9% (-32.9%) | -0.0 | 114.1% | USDC | Hypercore | 51,293 (53,546) | 0.20 | 0% / 10% (int.) | 1 | 12 | Hyperliquid | Severe | 9999-0xce56eb8261493462e3eb00a72c2bda2cb5fdccee | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0xce56eb8261493462e3eb00a72c2bda2cb5fdccee |
| 67 | Darkframe | -62.7% (-62.7%) | -20.7% (-20.7%) | -29.7% (-29.7%) | -34.9% (-34.9%) | -0.2 | 179.6% | USDC | Hypercore | 372,428 (713,299) | 0.66 | 0% / 10% (int.) | 1 | 10 | Hyperliquid | Severe | 9999-0x565ab99e1515c6dd3b8852b15354638d467f999a | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x565ab99e1515c6dd3b8852b15354638d467f999a |
| 68 | Super Saiyan 孫悟空 | -65.5% (-65.5%) | -76.6% (-76.6%) | -70.9% (-70.9%) | -96.7% (-96.7%) | -3.8 | 134.8% | USDC | Hypercore | 60,694 (365,032) | 1.18 | 0% / 10% (int.) | 1 | 109 | Hyperliquid | Severe | 9999-0x7c5885d2974457eafb1a3a4d848c358111f0714d | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x7c5885d2974457eafb1a3a4d848c358111f0714d |
| 69 | 22Cap | -67.3% (-67.3%) | 311.8% (311.8%) | 88.6% (88.6%) | -11.4% (-11.4%) | -2.3 | 4.1% | USDC | Hypercore | 129,526 (192,867) | 2.23 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0xba939edf38c0ae0cc689c98b492e0535f43e4550 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0xba939edf38c0ae0cc689c98b492e0535f43e4550 |
| 70 | Hyperdash Vault #1 | -69.7% (-69.7%) | 32.1% (32.1%) | 28.2% (28.2%) | -46.3% (-46.3%) | -2.2 | 30.9% | USDC | Hypercore | 151,433 (730,901) | 1.12 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0x4078582c42fdb547b1397fabb5d5a4beab81be9e | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x4078582c42fdb547b1397fabb5d5a4beab81be9e |
| 71 | Jade Lotus Capital | -72.0% (-72.0%) | 269.1% (269.1%) | 489.0% (489.0%) | 40.7% (40.7%) | 1.4 | 79.0% | USDC | Hypercore | 274,236 (483,990) | 0.74 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0xbc5bf88fd012612ba92c5bd96e183955801b7fdc | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0xbc5bf88fd012612ba92c5bd96e183955801b7fdc |
| 72 | AnnA | -75.6% (-75.6%) | -20.3% (-20.3%) | -39.6% (-39.6%) | -40.0% (-40.0%) | -1.1 | 121.4% | USDC | Hypercore | 221,569 (280,529) | 0.45 | 0% / 10% (int.) | 1 | 6 | Hyperliquid | Severe | 9999-0x4391c22edeece3a9aa5b8f3c1a3a25378980ff10 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x4391c22edeece3a9aa5b8f3c1a3a25378980ff10 |
| 73 | [ Tachyon ] HYPE | -78.6% (-78.6%) | 0.6% (0.6%) | 2.3% (2.3%) | 15.7% (15.7%) | 1.0 | 55.3% | USDC | Hypercore | 51,349 (59,482) | 0.28 | 0% / 10% (int.) | 1 | 8 | Hyperliquid | Severe | 9999-0x131ab0c5032079bb9286ffc1828e11d5931e77bb | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x131ab0c5032079bb9286ffc1828e11d5931e77bb |
| 74 | Sifu | -85.6% (-85.6%) | -100.0% (-100.0%) | -99.7% (-99.7%) | 127.3% (127.3%) | 3.1 | 292.4% | USDC | Hypercore | 2,079,687 (15,288,788) | 2.17 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0xf967239debef10dbc78e9bbbb2d8a16b72a614eb | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0xf967239debef10dbc78e9bbbb2d8a16b72a614eb |
| 75 | Pulse@Evo-α | -88.1% (-88.1%) | -16.6% (-16.6%) | -35.7% (-35.7%) | -50.6% (-50.6%) | -5.4 | 14.9% | USDC | Hypercore | 85,833 (106,549) | 0.41 | 0% / 10% (int.) | 1 | 7 | Hyperliquid | Severe | 9999-0x22a60014185f1486afb045219f76e4007fb71e4e | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x22a60014185f1486afb045219f76e4007fb71e4e |
| 76 | Coinseer_AI | -88.9% (-88.9%) | -13.3% (-13.3%) | -79.4% (-79.4%) | -79.4% (-79.4%) | -2.8 | 51.0% | USDC | Hypercore | 85,127 (107,941) | 0.09 | 0% / 10% (int.) | 1 | 23 | Hyperliquid | Severe | 9999-0xf36e402dbc9e6e904e719f680dc056c9d57cca24 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0xf36e402dbc9e6e904e719f680dc056c9d57cca24 |
| 77 | Martyrbit | -89.2% (-89.2%) | -8.1% (-8.1%) | -7.4% (-7.4%) | -38.7% (-38.7%) | -2.0 | 14.6% | USDC | Hypercore | 1,055,397 (1,891,339) | 1.10 | 0% / 10% (int.) | 1 | 12 | Hyperliquid | Severe | 9999-0x27d33e77c8e6335089f56e399bf706ae9ad402b9 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x27d33e77c8e6335089f56e399bf706ae9ad402b9 |
| 78 | hidden marko fund | -89.5% (-89.5%) | 9.4% (9.4%) | 16.1% (16.1%) | 46.8% (46.8%) | 1.5 | 238.7% | USDC | Hypercore | 154,835 (203,009) | 0.60 | 0% / 10% (int.) | 1 | 24 | Hyperliquid | Severe | 9999-0xc497f1f8840dd65affbab1a610b6e558844743d4 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0xc497f1f8840dd65affbab1a610b6e558844743d4 |
| 79 | reverse mid curver | -92.9% (-92.9%) | -24.5% (-24.5%) | -69.2% (-69.2%) | -69.2% (-69.2%) | -3.0 | 67.0% | USDC | Hypercore | 165,693 (216,569) | 0.24 | 0% / 10% (int.) | 1 | 2 | Hyperliquid | Severe | 9999-0x797327122c5ed1b1530e452b7f8723ba834b4c6a | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x797327122c5ed1b1530e452b7f8723ba834b4c6a |
| 80 | 100x | -93.6% (-93.6%) | 10.1% (10.1%) | 29.6% (29.6%) | -9.7% (-9.7%) | 0.1 | 36.7% | USDC | Hypercore | 129,761 (175,218) | 0.37 | 0% / 10% (int.) | 1 | 23 | Hyperliquid | Severe | 9999-0xa0cbceaac4dc736c457b7c340865695e2b3d0fc9 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0xa0cbceaac4dc736c457b7c340865695e2b3d0fc9 |
| 81 | Ultron | -94.0% (-94.0%) | -13.5% (-13.5%) | -48.5% (-48.5%) | -48.5% (-48.5%) | -0.8 | 108.8% | USDC | Hypercore | 3,279,768 (5,245,610) | 0.22 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0x45e7014f092c5f9c39482caec131346f13ac5e73 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x45e7014f092c5f9c39482caec131346f13ac5e73 |
| 82 | Black Ops | -94.1% (-94.1%) | -20.9% (-20.9%) | -85.1% (-85.1%) | -85.1% (-85.1%) | -3.0 | 73.7% | USDC | Hypercore | 176,744 (223,253) | 0.12 | 0% / 10% (int.) | 1 | 5 | Hyperliquid | Severe | 9999-0x49a648936441b22f28f069d3c088928682b277ae | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x49a648936441b22f28f069d3c088928682b277ae |
| 83 | Satori Quantum HF Vault | -96.2% (-96.2%) | 183.3% (183.3%) | 193.8% (193.8%) | -56.5% (-56.5%) | -0.7 | 243.6% | USDC | Hypercore | 611,074 (1,049,954) | 0.97 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0xbbf7d7a9d0eaeab4115f022a6863450296112422 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0xbbf7d7a9d0eaeab4115f022a6863450296112422 |
| 84 | Delta_01 | -96.6% (-96.6%) | 739.6% (739.6%) | 319.5% (319.5%) | -78.9% (-78.9%) | -1.4 | 68.2% | USDC | Hypercore | 497,444 (822,714) | 1.48 | 0% / 10% (int.) | 1 | 11 | Hyperliquid | Severe | 9999-0x3005fade4c0df5e1cd187d7062da359416f0eb8e | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x3005fade4c0df5e1cd187d7062da359416f0eb8e |
| 85 | IQ [L/S] | -99.5% (-99.5%) | -25.1% (-25.1%) | -67.5% (-67.5%) | -67.5% (-67.5%) | -0.9 | 111.2% | USDC | Hypercore | 52,383 (129,316) | 0.26 | 0% / 10% (int.) | 1 | 6 | Hyperliquid | Severe | 9999-0x3fe404ae27cc5eef4a08e226ae2ac4f5be7a06c4 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x3fe404ae27cc5eef4a08e226ae2ac4f5be7a06c4 |
| 86 | PCC | -99.9% (-99.9%) | -75.1% (-75.1%) | -72.3% (-72.3%) | -94.3% (-94.3%) | -4.4 | 5.2% | USDC | Hypercore | 64,152 (512,331) | 1.08 | 0% / 10% (int.) | 1 | 1 | Hyperliquid | Severe | 9999-0x65dfa218376939c7e18a6fb8e264ed261b5f9e92 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x65dfa218376939c7e18a6fb8e264ed261b5f9e92 |
| 87 | drkmttr | -99.9% (-99.9%) | -41.4% (-41.4%) | -93.1% (-93.1%) | -93.1% (-93.1%) | -3.6 | 121.0% | USDC | Hypercore | 3,916,102 (4,312,573) | 0.20 | 0% / 10% (int.) | 1 | 26 | Hyperliquid | Severe | 9999-0xc179e03922afe8fa9533d3f896338b9fb87ce0c8 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0xc179e03922afe8fa9533d3f896338b9fb87ce0c8 |
| 88 | Opportunistic Fund 1 | -99.9% (-99.9%) | -78.7% (-78.7%) | -99.8% (-99.8%) | -99.8% (-99.8%) | -5.7 | 143.0% | USDC | Hypercore | 53,108 (547,335) | 0.24 | 0% / 10% (int.) | 1 | 4 | Hyperliquid | Severe | 9999-0xfb7b73ff7c93f5552541de37454ffa0f8b76462a | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0xfb7b73ff7c93f5552541de37454ffa0f8b76462a |
| 89 | Hyperliquidity Trader (HLT) | -100.0% (-100.0%) | 4029.9% (4029.9%) | 353.5% (353.5%) | -85.3% (-85.3%) | -3.0 | 34.4% | USDC | Hypercore | 472,754 (3,406,584) | 2.46 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0x5a733b25a17dc0f26b862ca9e32b439801b1a8c7 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x5a733b25a17dc0f26b862ca9e32b439801b1a8c7 |
| 90 | Tera Liquid | -100.0% (-100.0%) | -56.1% (-56.1%) | -96.8% (-96.8%) | -96.8% (-96.8%) | -3.6 | 149.2% | USDC | Hypercore | 61,015 (149,699) | 0.24 | 0% / 10% (int.) | 1 | 3 | Hyperliquid | Severe | 9999-0x15a141990fc6591838646467273c41c92999772f | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x15a141990fc6591838646467273c41c92999772f |
| 91 | Coinseer2 | -100.0% (-100.0%) | -39.3% (-39.3%) | -100.0% (-100.0%) | -100.0% (-100.0%) | -4.1 | 158.7% | USDC | Hypercore | 54,622 (97,348) | 0.06 | 0% / 10% (int.) | 1 | 17 | Hyperliquid | Severe | 9999-0x8b1a2e764fd2976506fdb00035a948929b2f3198 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x8b1a2e764fd2976506fdb00035a948929b2f3198 |
| 92 | MC Recovery Fund | -100.0% (-100.0%) | -45.7% (-45.7%) | -68.7% (-68.7%) | -92.9% (-92.9%) | -3.1 | 340.1% | USDC | Hypercore | 1,003,062 (2,802,086) | 0.53 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0x914434e8a235cb608a94a5f70ab8c40927152a24 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x914434e8a235cb608a94a5f70ab8c40927152a24 |
| 93 | DailyTradeAI Low risk | -100.0% (-100.0%) | -59.5% (-59.5%) | -44.7% (-44.7%) | -98.7% (-98.7%) | -3.3 | 390.4% | USDC | Hypercore | 86,457 (504,826) | 1.52 | 0% / 10% (int.) | 1 | 89 | Hyperliquid | Severe | 9999-0x44ff912d0f88e27419ec0ddc950096609a9b6997 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x44ff912d0f88e27419ec0ddc950096609a9b6997 |
| 94 | Winwin | -100.0% (-100.0%) | -64.9% (-64.9%) | -49.3% (-49.3%) | -95.7% (-95.7%) | -6.3 | 79.1% | USDC | Hypercore | 71,130 (136,732) | 1.54 | 0% / 10% (int.) | 1 | 60 | Hyperliquid | Severe | 9999-0xa7f152a5f79bb5483c079610203d8fc03fd77c8e | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0xa7f152a5f79bb5483c079610203d8fc03fd77c8e |
| 95 | Long LINK Short XRP | -100.0% (-100.0%) | -76.3% (-76.3%) | -91.5% (-91.5%) | -99.9% (-99.9%) | -2.3 | 343.2% | USDC | Hypercore | 875,358 (1,014,768) | 0.58 | 0% / 10% (int.) | 1 | 156 | Hyperliquid | Severe | 9999-0x73ce82fb75868af2a687e9889fcf058dd1cf8ce9 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x73ce82fb75868af2a687e9889fcf058dd1cf8ce9 |
| 96 | Mattertrades | -100.0% (-100.0%) | -21.8% (-21.8%) | -100.0% (-100.0%) | -100.0% (-100.0%) | -6.3 | 241.7% | USDC | Hypercore | 192,238 (285,564) | 0.01 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0x4158f13cfa57657f91000fa8b83580dccd4ffce9 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x4158f13cfa57657f91000fa8b83580dccd4ffce9 |
| 97 | SMM Foundation | -100.0% (-100.0%) | -51.9% (-51.9%) | -100.0% (-100.0%) | -100.0% (-100.0%) | -9.2 | 331.4% | USDC | Hypercore | 95,173 (110,573) | 0.02 | 0% / 10% (int.) | 1 | 3 | Hyperliquid | Severe | 9999-0x45bae5219bbbcce476e8ac92c26593ad9ba93d01 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/r... | https://tradingstrategy.ai/trading-view/hyperl... | None | None | None | None | --- | --- | 0x45bae5219bbbcce476e8ac92c26593ad9ba93d01 |
Top vault equity curve comparison
Compare top vault equity curves
Compare net returns
Only vaults with fee data included
Lookback 90 days
[8]:
from eth_defi.research.vault_benchmark import visualise_vault_return_benchmark
top_count = 15
top_vaults_specs = lifetime_data_filtered_df.head(top_count)["id"].apply(VaultSpec.parse_string)
fig, net_returns_df = visualise_vault_return_benchmark(
top_vaults_specs,
prices_df=prices_df,
vault_db=vault_db,
)
fig.show()
Vault charts and performance tearsheets
Show rolling returns performance chart for N top vaults
[9]:
from eth_defi.research.vault_metrics import display_vault_chart_and_tearsheet
from eth_defi.vault.risk import VaultTechnicalRisk
examined_vaults_df = lifetime_data_filtered_df.loc[lifetime_data_filtered_df["risk"] != VaultTechnicalRisk.blacklisted]
interest_vault_specs = []
for idx, row in examined_vaults_df.head(10).iterrows():
chain_id = row["id"].split("-")[0]
address = row["id"].split("-")[1]
vault_spec = VaultSpec(chain_id=int(chain_id), vault_address=address)
# Used later
interest_vault_specs.append(vault_spec)
display_vault_chart_and_tearsheet(
vault_spec,
vault_db=vault_db,
prices_df=prices_df,
render=True,
)
Vault Long HYPE & BTC | Short Garbage (Hypercore): 0xac26cf5f3c46b5e102048c65b977d2551b72a9c7)
| Start | 2025-04-09 |
| End | 2026-02-21 |
| Risk-free rate | 0.00% |
| Total Return | 116.53% |
| CAGR | 142.87% |
| Max Drawdown | -52.57% |
| Calmar Ratio | 2.72 |
| MTD | 9.12% | 3m | 61.07% |
| 6m | 109.65% | YTD | 102.04% |
| 1Y | - | 3Y (ann.) | - |
| 5Y (ann.) | - | 10Y (ann.) | - |
| Since Incep. (ann.) | 142.87% |
| Daily Sharpe | 1.08 | Daily Sortino | 2.07 |
| Daily Mean (ann.) | 102.00% | Daily Vol (ann.) | 94.07% |
| Daily Skew | 2.95 | Daily Kurt | 27.70 |
| Best Day | 48.58% | Worst Day | -30.30% |
| Monthly Sharpe | 1.15 | Monthly Sortino | 4.16 |
| Monthly Mean (ann.) | 127.73% | Monthly Vol (ann.) | 111.03% |
| Monthly Skew | 1.45 | Monthly Kurt | 2.60 |
| Best Month | 85.15% | Worst Month | -22.27% |
| Yearly Sharpe | - | Yearly Sortino | - |
| Yearly Mean | 102.04% | Yearly Vol | - |
| Yearly Skew | - | Yearly Kurt | - |
| Best Year | 102.04% | Worst Year | 102.04% |
| Avg. Drawdown | -26.01% | Avg. Drawdown Days | 80.33 |
| Avg. Up Month | 33.61% | Avg. Down Month | -12.32% |
| Win Year % | 100.00% | Win 12m % | - |
Vault Tenety (Hypercore): 0x8b0f84433ca5f287f0f09f84c5a378beb9d11b05)
| Start | 2025-11-05 |
| End | 2026-02-21 |
| Risk-free rate | 0.00% |
| Total Return | -61.62% |
| CAGR | -96.08% |
| Max Drawdown | -83.16% |
| Calmar Ratio | -1.16 |
| MTD | 20.61% | 3m | -52.59% |
| 6m | - | YTD | 39.69% |
| 1Y | - | 3Y (ann.) | - |
| 5Y (ann.) | - | 10Y (ann.) | - |
| Since Incep. (ann.) | -96.08% |
| Daily Sharpe | -0.13 | Daily Sortino | -0.25 |
| Daily Mean (ann.) | -27.66% | Daily Vol (ann.) | 217.30% |
| Daily Skew | 4.32 | Daily Kurt | 37.77 |
| Best Day | 106.61% | Worst Day | -50.46% |
| Monthly Sharpe | 0.20 | Monthly Sortino | 0.31 |
| Monthly Mean (ann.) | 19.77% | Monthly Vol (ann.) | 99.75% |
| Monthly Skew | -1.68 | Monthly Kurt | - |
| Best Month | 20.61% | Worst Month | -31.49% |
| Yearly Sharpe | - | Yearly Sortino | - |
| Yearly Mean | - | Yearly Vol | - |
| Yearly Skew | - | Yearly Kurt | - |
| Best Year | - | Worst Year | - |
| Avg. Drawdown | -83.16% | Avg. Drawdown Days | 101.00 |
| Avg. Up Month | 18.21% | Avg. Down Month | -31.49% |
| Win Year % | - | Win 12m % | - |
Vault Citadel (Hypercore): 0xda51323fe9800c8365646ad5c7ade0dd17fdc167)
| Start | 2023-11-22 |
| End | 2026-02-21 |
| Risk-free rate | 0.00% |
| Total Return | 3990.51% |
| CAGR | 420.21% |
| Max Drawdown | -47.56% |
| Calmar Ratio | 8.83 |
| MTD | -1.30% | 3m | 21.52% |
| 6m | 67.74% | YTD | 37.53% |
| 1Y | 85.87% | 3Y (ann.) | 420.21% |
| 5Y (ann.) | - | 10Y (ann.) | - |
| Since Incep. (ann.) | 420.21% |
| Daily Sharpe | 0.86 | Daily Sortino | 5.32 |
| Daily Mean (ann.) | 247.99% | Daily Vol (ann.) | 288.81% |
| Daily Skew | 24.91 | Daily Kurt | 678.78 |
| Best Day | 497.63% | Worst Day | -47.56% |
| Monthly Sharpe | 0.97 | Monthly Sortino | 11.89 |
| Monthly Mean (ann.) | 363.92% | Monthly Vol (ann.) | 376.47% |
| Monthly Skew | 4.77 | Monthly Kurt | 23.92 |
| Best Month | 559.70% | Worst Month | -23.32% |
| Yearly Sharpe | 0.69 | Yearly Sortino | inf |
| Yearly Mean | 339.56% | Yearly Vol | 492.02% |
| Yearly Skew | 1.72 | Yearly Kurt | - |
| Best Year | 907.30% | Worst Year | 37.53% |
| Avg. Drawdown | -22.25% | Avg. Drawdown Days | 50.80 |
| Avg. Up Month | 50.31% | Avg. Down Month | -17.13% |
| Win Year % | 100.00% | Win 12m % | 100.00% |
Vault Overdose (Hypercore): 0xe67dbf2d051106b42104c1a6631af5e5a458b682)
| Start | 2025-12-10 |
| End | 2026-02-21 |
| Risk-free rate | 0.00% |
| Total Return | 136.43% |
| CAGR | 7309.56% |
| Max Drawdown | -32.51% |
| Calmar Ratio | 224.86 |
| MTD | 38.36% | 3m | - |
| 6m | - | YTD | 124.90% |
| 1Y | - | 3Y (ann.) | - |
| 5Y (ann.) | - | 10Y (ann.) | - |
| Since Incep. (ann.) | 7309.56% |
| Daily Sharpe | 3.44 | Daily Sortino | 6.41 |
| Daily Mean (ann.) | 349.38% | Daily Vol (ann.) | 101.70% |
| Daily Skew | 0.32 | Daily Kurt | 6.79 |
| Best Day | 24.26% | Worst Day | -25.60% |
| Monthly Sharpe | 10.22 | Monthly Sortino | inf |
| Monthly Mean (ann.) | 605.45% | Monthly Vol (ann.) | 59.27% |
| Monthly Skew | - | Monthly Kurt | - |
| Best Month | 62.55% | Worst Month | 38.36% |
| Yearly Sharpe | - | Yearly Sortino | - |
| Yearly Mean | - | Yearly Vol | - |
| Yearly Skew | - | Yearly Kurt | - |
| Best Year | - | Worst Year | - |
| Avg. Drawdown | -8.63% | Avg. Drawdown Days | 6.50 |
| Avg. Up Month | 50.45% | Avg. Down Month | - |
| Win Year % | - | Win 12m % | - |
Vault Goon Edging (Hypercore): 0x2431edfcb662e6ff6deab113cc91878a0b53fb0f)
| Start | 2025-02-05 |
| End | 2026-02-21 |
| Risk-free rate | 0.00% |
| Total Return | 148.77% |
| CAGR | 139.58% |
| Max Drawdown | -50.08% |
| Calmar Ratio | 2.79 |
| MTD | 21.65% | 3m | 48.56% |
| 6m | 70.07% | YTD | 32.25% |
| 1Y | 154.97% | 3Y (ann.) | - |
| 5Y (ann.) | - | 10Y (ann.) | - |
| Since Incep. (ann.) | 139.58% |
| Daily Sharpe | 1.16 | Daily Sortino | 2.18 |
| Daily Mean (ann.) | 86.34% | Daily Vol (ann.) | 74.11% |
| Daily Skew | 2.46 | Daily Kurt | 26.55 |
| Best Day | 36.56% | Worst Day | -28.25% |
| Monthly Sharpe | 1.46 | Monthly Sortino | 2.27 |
| Monthly Mean (ann.) | 107.31% | Monthly Vol (ann.) | 73.40% |
| Monthly Skew | -1.83 | Monthly Kurt | 4.27 |
| Best Month | 30.04% | Worst Month | -47.45% |
| Yearly Sharpe | - | Yearly Sortino | - |
| Yearly Mean | 32.25% | Yearly Vol | - |
| Yearly Skew | - | Yearly Kurt | - |
| Best Year | 32.25% | Worst Year | 32.25% |
| Avg. Drawdown | -14.49% | Avg. Drawdown Days | 38.12 |
| Avg. Up Month | 18.00% | Avg. Down Month | -18.24% |
| Win Year % | 100.00% | Win 12m % | 100.00% |
Vault [ Systemic Strategies ] ♾️ HyperGrowth ♾️ (Hypercore): 0xd6e56265890b76413d1d527eb9b75e334c0c5b42)
| Start | 2025-09-03 |
| End | 2026-02-21 |
| Risk-free rate | 0.00% |
| Total Return | 37.85% |
| CAGR | 98.50% |
| Max Drawdown | -43.85% |
| Calmar Ratio | 2.25 |
| MTD | 4.77% | 3m | 10.76% |
| 6m | - | YTD | 46.18% |
| 1Y | - | 3Y (ann.) | - |
| 5Y (ann.) | - | 10Y (ann.) | - |
| Since Incep. (ann.) | 98.50% |
| Daily Sharpe | 0.93 | Daily Sortino | 1.85 |
| Daily Mean (ann.) | 118.89% | Daily Vol (ann.) | 127.23% |
| Daily Skew | 3.62 | Daily Kurt | 34.04 |
| Best Day | 65.86% | Worst Day | -36.70% |
| Monthly Sharpe | 1.24 | Monthly Sortino | 3.53 |
| Monthly Mean (ann.) | 124.49% | Monthly Vol (ann.) | 100.55% |
| Monthly Skew | 0.12 | Monthly Kurt | -2.65 |
| Best Month | 41.05% | Worst Month | -23.00% |
| Yearly Sharpe | - | Yearly Sortino | - |
| Yearly Mean | 46.18% | Yearly Vol | - |
| Yearly Skew | - | Yearly Kurt | - |
| Best Year | 46.18% | Worst Year | 46.18% |
| Avg. Drawdown | -26.99% | Avg. Drawdown Days | 46.33 |
| Avg. Up Month | 28.45% | Avg. Down Month | -16.74% |
| Win Year % | 100.00% | Win 12m % | - |
Vault Wall777 (Hypercore): 0x43eabf1421922d658e80cb5f7c4a65e6cfc697e1)
| Start | 2025-12-10 |
| End | 2026-02-21 |
| Risk-free rate | 0.00% |
| Total Return | 88.01% |
| CAGR | 2254.01% |
| Max Drawdown | -28.52% |
| Calmar Ratio | 79.02 |
| MTD | 15.88% | 3m | - |
| 6m | - | YTD | 35.41% |
| 1Y | - | 3Y (ann.) | - |
| 5Y (ann.) | - | 10Y (ann.) | - |
| Since Incep. (ann.) | 2254.01% |
| Daily Sharpe | 2.67 | Daily Sortino | 5.77 |
| Daily Mean (ann.) | 263.70% | Daily Vol (ann.) | 98.67% |
| Daily Skew | 2.01 | Daily Kurt | 12.35 |
| Best Day | 31.80% | Worst Day | -21.72% |
| Monthly Sharpe | 81.78 | Monthly Sortino | inf |
| Monthly Mean (ann.) | 196.43% | Monthly Vol (ann.) | 2.40% |
| Monthly Skew | - | Monthly Kurt | - |
| Best Month | 16.86% | Worst Month | 15.88% |
| Yearly Sharpe | - | Yearly Sortino | - |
| Yearly Mean | - | Yearly Vol | - |
| Yearly Skew | - | Yearly Kurt | - |
| Best Year | - | Worst Year | - |
| Avg. Drawdown | -9.07% | Avg. Drawdown Days | 6.60 |
| Avg. Up Month | 16.37% | Avg. Down Month | - |
| Win Year % | - | Win 12m % | - |
Vault BredoStrategy (Hypercore): 0x654016a8c9fcf0c4cb7ed6078aba21f7f399f7b7)
| Start | 2026-02-17 |
| End | 2026-02-21 |
| Risk-free rate | 0.00% |
| Total Return | 3.44% |
| CAGR | 2100.61% |
| Max Drawdown | -6.91% |
| Calmar Ratio | 304.19 |
| MTD | 3.44% | 3m | - |
| 6m | - | YTD | 3.44% |
| 1Y | - | 3Y (ann.) | - |
| 5Y (ann.) | - | 10Y (ann.) | - |
| Since Incep. (ann.) | 2100.61% |
| Daily Sharpe | 2.60 | Daily Sortino | 4.53 |
| Daily Mean (ann.) | 248.54% | Daily Vol (ann.) | 95.46% |
| Daily Skew | -0.67 | Daily Kurt | 0.71 |
| Best Day | 7.38% | Worst Day | -6.91% |
| Monthly Sharpe | - | Monthly Sortino | - |
| Monthly Mean (ann.) | - | Monthly Vol (ann.) | - |
| Monthly Skew | - | Monthly Kurt | - |
| Best Month | - | Worst Month | - |
| Yearly Sharpe | - | Yearly Sortino | - |
| Yearly Mean | - | Yearly Vol | - |
| Yearly Skew | - | Yearly Kurt | - |
| Best Year | - | Worst Year | - |
| Avg. Drawdown | -6.91% | Avg. Drawdown Days | 2.00 |
| Avg. Up Month | - | Avg. Down Month | - |
| Win Year % | - | Win 12m % | - |
Vault Scott Phillips Trading Vault (Hypercore): 0x1840bdb83caff17de910ec407cafb817678786b5)
| Start | 2025-02-26 |
| End | 2026-02-21 |
| Risk-free rate | 0.00% |
| Total Return | -11.31% |
| CAGR | -11.46% |
| Max Drawdown | -69.98% |
| Calmar Ratio | -0.16 |
| MTD | 4.48% | 3m | 24.73% |
| 6m | 5.21% | YTD | 17.38% |
| 1Y | - | 3Y (ann.) | - |
| 5Y (ann.) | - | 10Y (ann.) | - |
| Since Incep. (ann.) | -11.46% |
| Daily Sharpe | 0.36 | Daily Sortino | 0.58 |
| Daily Mean (ann.) | 32.07% | Daily Vol (ann.) | 88.93% |
| Daily Skew | 2.03 | Daily Kurt | 61.84 |
| Best Day | 55.56% | Worst Day | -51.08% |
| Monthly Sharpe | 0.56 | Monthly Sortino | 0.97 |
| Monthly Mean (ann.) | 68.02% | Monthly Vol (ann.) | 121.64% |
| Monthly Skew | 0.04 | Monthly Kurt | 2.13 |
| Best Month | 77.86% | Worst Month | -67.49% |
| Yearly Sharpe | - | Yearly Sortino | - |
| Yearly Mean | 17.38% | Yearly Vol | - |
| Yearly Skew | - | Yearly Kurt | - |
| Best Year | 17.38% | Worst Year | 17.38% |
| Avg. Drawdown | -29.60% | Avg. Drawdown Days | 114.33 |
| Avg. Up Month | 20.80% | Avg. Down Month | -24.60% |
| Win Year % | 100.00% | Win 12m % | 0.00% |
Vault Bitcoin Moving Average Long/Short (Hypercore): 0xb1505ad1a4c7755e0eb236aa2f4327bfc3474768)
| Start | 2025-10-08 |
| End | 2026-02-21 |
| Risk-free rate | 0.00% |
| Total Return | 6.42% |
| CAGR | 18.18% |
| Max Drawdown | -21.95% |
| Calmar Ratio | 0.83 |
| MTD | 19.73% | 3m | 15.02% |
| 6m | - | YTD | 13.37% |
| 1Y | - | 3Y (ann.) | - |
| 5Y (ann.) | - | 10Y (ann.) | - |
| Since Incep. (ann.) | 18.18% |
| Daily Sharpe | 0.52 | Daily Sortino | 0.78 |
| Daily Mean (ann.) | 36.91% | Daily Vol (ann.) | 71.13% |
| Daily Skew | 0.17 | Daily Kurt | 15.76 |
| Best Day | 25.27% | Worst Day | -20.87% |
| Monthly Sharpe | 0.32 | Monthly Sortino | 0.77 |
| Monthly Mean (ann.) | 15.10% | Monthly Vol (ann.) | 47.34% |
| Monthly Skew | 0.97 | Monthly Kurt | 0.71 |
| Best Month | 19.73% | Worst Month | -11.93% |
| Yearly Sharpe | - | Yearly Sortino | - |
| Yearly Mean | - | Yearly Vol | - |
| Yearly Skew | - | Yearly Kurt | - |
| Best Year | - | Worst Year | - |
| Avg. Drawdown | -17.74% | Avg. Drawdown Days | 27.25 |
| Avg. Up Month | 11.14% | Avg. Down Month | -8.63% |
| Win Year % | - | Win 12m % | - |
Rolling returns comparison
Show rolling returns of all picked vaults
[10]:
from eth_defi.research.rolling_returns import calculate_rolling_returns, visualise_rolling_returns
rolling_returns_df = calculate_rolling_returns(
prices_df,
interesting_vaults=[spec.as_string_id() for spec in interest_vault_specs],
clip_up=100,
)
assert len(rolling_returns_df) > 0, "No rolling returns calculated"
fig = visualise_rolling_returns(rolling_returns_df)
fig.show()
All vaults
List all Hyperliquid vaults found
[11]:
from eth_defi.research.vault_metrics import format_lifetime_table, display_lifetime_table
min_tvl = 1_000
lifetime_data_filtered_df = lifetime_data_df[lifetime_data_df["current_nav"] >= min_tvl]
formatted = format_lifetime_table(
lifetime_data_filtered_df,
add_index=True,
html_links=True,
)
display_lifetime_table(formatted)
| Name | Lifetime return abs. (net / gross) | Lifetime return ann. (net / gross) | 3M return ann. (net / gross) | 3M sharpe | 3M volatility | 1M return ann. (net / gross) | Denomination | Chain | TVL USD (current / peak) | Age (years) | Fees (mgmt / perf / dep / with) | Lock up est. days | Deposit events | Protocol | Risk | id | Flags | Notes | Link | Deposit closed reason | Redemption closed reason | Deposit next open | Redemption next open | Available liquidity | Utilisation | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| # | ||||||||||||||||||||||||||
| 1 | Long HYPE & BTC | Short Garbage | 116.5% (116.5%) | 142.9% (142.9%) | 537.4% (537.4%) | 3.9 | 523.3% | 10000.0% (10000.0%) | USDC | Hypercore | 1,605,475 (5,218,102) | 0.87 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0xac26cf5f3c46b5e102048c65b977d2551b72a9c7 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/long-hype-btc-short-garbage?a=0xac26cf5f3c46b5e102048c65b977d2551b72a9c7 | None | None | None | None | --- | --- |
| 2 | Tenety | -61.6% (-61.6%) | -96.1% (-96.1%) | -94.5% (-94.5%) | 0.2 | 657.1% | 10000.0% (10000.0%) | USDC | Hypercore | 55,276 (56,693) | 0.30 | 0% / 10% (int.) | 1 | 3 | Hyperliquid | Severe | 9999-0x8b0f84433ca5f287f0f09f84c5a378beb9d11b05 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/tenety?a=0x8b0f84433ca5f287f0f09f84c5a378beb9d11b05 | None | None | None | None | --- | --- |
| 3 | Citadel | 3990.5% (3990.5%) | 420.2% (420.2%) | 102.3% (102.3%) | 3.0 | 275.6% | 10000.0% (10000.0%) | USDC | Hypercore | 527,395 (533,008) | 2.25 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0xda51323fe9800c8365646ad5c7ade0dd17fdc167 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/citadel?a=0xda51323fe9800c8365646ad5c7ade0dd17fdc167 | None | None | None | None | --- | --- |
| 4 | Overdose | 136.4% (136.4%) | 7309.6% (7309.6%) | 7309.6% (7309.6%) | 5.7 | 117.4% | 10000.0% (10000.0%) | USDC | Hypercore | 565,110 (565,110) | 0.20 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0xe67dbf2d051106b42104c1a6631af5e5a458b682 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/overdose?a=0xe67dbf2d051106b42104c1a6631af5e5a458b682 | None | None | None | None | --- | --- |
| 5 | Goon Edging | 148.8% (148.8%) | 139.6% (139.6%) | 365.5% (365.5%) | 4.2 | 349.4% | 10000.0% (10000.0%) | USDC | Hypercore | 85,946 (100,099) | 1.04 | 0% / 10% (int.) | 1 | 36 | Hyperliquid | Severe | 9999-0x2431edfcb662e6ff6deab113cc91878a0b53fb0f | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/goon-edging?a=0x2431edfcb662e6ff6deab113cc91878a0b53fb0f | None | None | None | None | --- | --- |
| 6 | [ Systemic Strategies ] ♾️ HyperGrowth ♾️ | 37.8% (37.8%) | 98.5% (98.5%) | 48.8% (48.8%) | 1.7 | 459.3% | 10000.0% (10000.0%) | USDC | Hypercore | 6,414,595 (7,241,294) | 0.47 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0xd6e56265890b76413d1d527eb9b75e334c0c5b42 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/systemic-strategies-hypergrowth?a=0xd6e56265890b76413d1d527eb9b75e334c0c5b42 | None | None | None | None | --- | --- |
| 7 | Wall777 | 88.0% (88.0%) | 2254.0% (2254.0%) | 2254.0% (2254.0%) | 4.4 | 85.5% | 2635.4% (2635.4%) | USDC | Hypercore | 53,107 (53,686) | 0.20 | 0% / 10% (int.) | 1 | 9 | Hyperliquid | Severe | 9999-0x43eabf1421922d658e80cb5f7c4a65e6cfc697e1 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/wall777?a=0x43eabf1421922d658e80cb5f7c4a65e6cfc697e1 | None | None | None | None | --- | --- |
| 8 | BredoStrategy | 3.4% (3.4%) | 2100.6% (2100.6%) | 2100.6% (2100.6%) | 3.1 | 114.9% | 2100.6% (2100.6%) | USDC | Hypercore | 1,481,304 (1,481,304) | 0.01 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0x654016a8c9fcf0c4cb7ed6078aba21f7f399f7b7 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/bredostrategy?a=0x654016a8c9fcf0c4cb7ed6078aba21f7f399f7b7 | None | None | None | None | --- | --- |
| 9 | Scott Phillips Trading Vault | -11.3% (-11.3%) | -11.5% (-11.5%) | 136.0% (136.0%) | 3.1 | 156.8% | 2022.2% (2022.2%) | USDC | Hypercore | 1,296,265 (1,506,754) | 0.99 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0x1840bdb83caff17de910ec407cafb817678786b5 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/scott-phillips-trading-vault?a=0x1840bdb83caff17de910ec407cafb817678786b5 | None | None | None | None | --- | --- |
| 10 | Bitcoin Moving Average Long/Short | 6.4% (6.4%) | 18.2% (18.2%) | 72.2% (72.2%) | 2.0 | 45.1% | 1782.8% (1782.8%) | USDC | Hypercore | 3,468,831 (3,896,312) | 0.37 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0xb1505ad1a4c7755e0eb236aa2f4327bfc3474768 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/bitcoin-moving-average-long-short?a=0xb1505ad1a4c7755e0eb236aa2f4327bfc3474768 | None | None | None | None | --- | --- |
| 11 | Wonderland | -13.7% (-13.7%) | -21.7% (-21.7%) | -48.4% (-48.4%) | 0.9 | 308.9% | 1300.1% (1300.1%) | USDC | Hypercore | 112,612 (286,098) | 0.60 | 0% / 10% (int.) | 1 | 54 | Hyperliquid | Severe | 9999-0x9a88dd4eacc3aa561c4f50ec66bcede831bec813 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/wonderland?a=0x9a88dd4eacc3aa561c4f50ec66bcede831bec813 | None | None | None | None | --- | --- |
| 12 | Value token strategy | 6.0% (6.0%) | 961.0% (961.0%) | 961.0% (961.0%) | 3.1 | 88.5% | 961.0% (961.0%) | USDC | Hypercore | 106,264 (114,636) | 0.02 | 0% / 10% (int.) | 1 | 1 | Hyperliquid | Severe | 9999-0x36dc8d4188c57008b7ddbc21662ef28a88a9c684 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/value-token-strategy?a=0x36dc8d4188c57008b7ddbc21662ef28a88a9c684 | None | None | None | None | --- | --- |
| 13 | Elsewhere | 174.3% (174.3%) | 86.6% (86.6%) | 901.6% (901.6%) | 8.6 | 8.2% | 898.1% (898.1%) | USDC | Hypercore | 511,098 (1,783,212) | 1.62 | 0% / 10% (int.) | 1 | 60 | Hyperliquid | Severe | 9999-0x8fc7c0442e582bca195978c5a4fdec2e7c5bb0f7 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/elsewhere?a=0x8fc7c0442e582bca195978c5a4fdec2e7c5bb0f7 | None | None | None | None | --- | --- |
| 14 | +convexity | 15.5% (15.5%) | 34.5% (34.5%) | 49.8% (49.8%) | 2.4 | 0.4% | 827.2% (827.2%) | USDC | Hypercore | 497,416 (519,933) | 0.49 | 0% / 10% (int.) | 1 | 20 | Hyperliquid | Severe | 9999-0x5661a070eb13c7c55ac3210b2447d4bea426cbf5 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/convexity?a=0x5661a070eb13c7c55ac3210b2447d4bea426cbf5 | None | None | None | None | --- | --- |
| 15 | Crypto Trading Channel | 33.6% (33.6%) | 26.9% (26.9%) | 131.3% (131.3%) | 8.6 | 27.6% | 500.8% (500.8%) | USDC | Hypercore | 83,176 (85,016) | 1.22 | 0% / 10% (int.) | 1 | 11 | Hyperliquid | Severe | 9999-0x51b62b4bf8df6f2795b3da30cb46aa47f9f230a8 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/crypto-trading-channel?a=0x51b62b4bf8df6f2795b3da30cb46aa47f9f230a8 | None | None | None | None | --- | --- |
| 16 | Cryptoaddcited | 43.3% (43.3%) | 39.5% (39.5%) | 11.4% (11.4%) | 0.9 | 32.0% | 447.6% (447.6%) | USDC | Hypercore | 162,709 (199,566) | 1.08 | 0% / 10% (int.) | 1 | 54 | Hyperliquid | Severe | 9999-0x5108cd0a328ed28c277f958761fe1cda60c21aa8 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/cryptoaddcited?a=0x5108cd0a328ed28c277f958761fe1cda60c21aa8 | None | None | None | None | --- | --- |
| 17 | Gucky_1coin_1dot5x | 215.5% (215.5%) | 189.4% (189.4%) | 18.6% (18.6%) | 1.4 | 50.7% | 423.9% (423.9%) | USDC | Hypercore | 82,828 (88,895) | 1.08 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0xd2f03635901956b950737bbf02463dfad9f2e9e1 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/gucky-1coin-1dot5x?a=0xd2f03635901956b950737bbf02463dfad9f2e9e1 | None | None | None | None | --- | --- |
| 18 | Picking Winners | 19.1% (19.1%) | 97.4% (97.4%) | 97.4% (97.4%) | 1.8 | 163.0% | 299.9% (299.9%) | USDC | Hypercore | 121,548 (132,785) | 0.26 | 0% / 10% (int.) | 1 | 11 | Hyperliquid | Severe | 9999-0x1fec994c4dd99e126643698ae6b3253cef5ff3d6 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/picking-winners?a=0x1fec994c4dd99e126643698ae6b3253cef5ff3d6 | None | None | None | None | --- | --- |
| 19 | -VectorZero- | 100.0% (100.0%) | 83.8% (83.8%) | -29.5% (-29.5%) | 0.8 | 171.9% | 242.6% (242.6%) | USDC | Hypercore | 59,815 (201,829) | 1.14 | 0% / 10% (int.) | 1 | 58 | Hyperliquid | Severe | 9999-0x241ba250828c6a1289330aeec301e7bdcef31a43 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/vectorzero?a=0x241ba250828c6a1289330aeec301e7bdcef31a43 | None | None | None | None | --- | --- |
| 20 | Loop Fund | 321.9% (321.9%) | 541.1% (541.1%) | -22.2% (-22.2%) | 0.7 | 238.1% | 240.2% (240.2%) | USDC | Hypercore | 151,781 (179,533) | 0.77 | 0% / 10% (int.) | 1 | 44 | Hyperliquid | Severe | 9999-0xfeab64de8cdf9dcebc0f49812499e396273efc06 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/loop-fund?a=0xfeab64de8cdf9dcebc0f49812499e396273efc06 | None | None | None | None | --- | --- |
| 21 | Crypto_Lab28 | 32.0% (32.0%) | 56.3% (56.3%) | -64.2% (-64.2%) | 0.1 | 178.6% | 204.5% (204.5%) | USDC | Hypercore | 142,799 (196,561) | 0.62 | 0% / 10% (int.) | 1 | 21 | Hyperliquid | Severe | 9999-0xb11fe7f2e97bd02b2da909b32f4a5e7fcb0df099 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/crypto-lab28?a=0xb11fe7f2e97bd02b2da909b32f4a5e7fcb0df099 | None | None | None | None | --- | --- |
| 22 | MOAS | -4.8% (-4.8%) | -3.9% (-3.9%) | 961.7% (961.7%) | 4.2 | 15.3% | 199.5% (199.5%) | USDC | Hypercore | 118,765 (123,903) | 1.23 | 0% / 10% (int.) | 1 | 5 | Hyperliquid | Severe | 9999-0x29b98aaf8eeb316385fe2ed1af564bdc4b03ffd6 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/moas?a=0x29b98aaf8eeb316385fe2ed1af564bdc4b03ffd6 | None | None | None | None | --- | --- |
| 23 | Equinox · Blackalgo | 9.2% (9.2%) | 164.3% (164.3%) | 164.3% (164.3%) | 1.8 | 67.3% | 191.3% (191.3%) | USDC | Hypercore | 1,173,447 (1,204,780) | 0.09 | 0% / 10% (int.) | 1 | 30 | Hyperliquid | Severe | 9999-0x7048b287889c5913d59f812795d7fd5d724be77a | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/equinox-blackalgo?a=0x7048b287889c5913d59f812795d7fd5d724be77a | None | None | None | None | --- | --- |
| 24 | Deposit. Forget. Wake up richer | -38.1% (-38.1%) | -68.9% (-68.9%) | -66.1% (-66.1%) | -3.8 | 44.4% | 163.5% (163.5%) | USDC | Hypercore | 341,466 (366,820) | 0.41 | 0% / 10% (int.) | 1 | 1 | Hyperliquid | Severe | 9999-0x253b88ebaa7c321d4803c0cfaf708684e3de32be | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/deposit-forget-wake-up-richer?a=0x253b88ebaa7c321d4803c0cfaf708684e3de32be | None | None | None | None | --- | --- |
| 25 | AILAB TEST URTRA' | 12.8% (12.8%) | 218.5% (218.5%) | 218.5% (218.5%) | 5.6 | 22.4% | 146.7% (146.7%) | USDC | Hypercore | 421,060 (441,583) | 0.10 | 0% / 10% (int.) | 1 | 14 | Hyperliquid | Severe | 9999-0x21edf2d791f626ee69352120e7f6e2fbb0f48cf1 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/ailab-test-urtra?a=0x21edf2d791f626ee69352120e7f6e2fbb0f48cf1 | None | None | None | None | --- | --- |
| 26 | [ Systemic Strategies ] L/S Grids | 61.4% (61.4%) | 56.9% (56.9%) | 36.1% (36.1%) | 1.8 | 40.5% | 109.8% (109.8%) | USDC | Hypercore | 3,142,835 (4,713,536) | 1.06 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0x07fd993f0fa3a185f7207adccd29f7a87404689d | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/systemic-strategies-l-s-grids?a=0x07fd993f0fa3a185f7207adccd29f7a87404689d | None | None | None | None | --- | --- |
| 27 | Hyperliquidity Provider (HLP) | 175.9% (175.9%) | 43.9% (43.9%) | 28.1% (28.1%) | 6.4 | 0.1% | 102.2% (102.2%) | USDC | Hypercore | 381,918,480 (603,904,920) | 2.79 | 0% / 0% | 4 | 100 | Hyperliquid | Severe | 9999-0xdfc24b077bc1425ad1dea75bcb6f8158e10df303 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/hyperliquidity-provider-hlp?a=0xdfc24b077bc1425ad1dea75bcb6f8158e10df303 | None | None | None | None | --- | --- |
| 28 | RedCoast | 3.8% (3.8%) | 53.4% (53.4%) | 53.4% (53.4%) | 2.6 | 17.1% | 65.7% (65.7%) | USDC | Hypercore | 104,188 (104,228) | 0.09 | 0% / 10% (int.) | 1 | 1 | Hyperliquid | Severe | 9999-0x8fafc23611d59310b957162b8479f354c5a0eb4d | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/redcoast?a=0x8fafc23611d59310b957162b8479f354c5a0eb4d | None | None | None | None | --- | --- |
| 29 | Growi HF | 132.4% (132.4%) | 68.4% (68.4%) | 36.2% (36.2%) | 2.0 | 80.9% | 62.7% (62.7%) | USDC | Hypercore | 6,510,826 (8,162,994) | 1.62 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0x1e37a337ed460039d1b15bd3bc489de789768d5e | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/growi-hf?a=0x1e37a337ed460039d1b15bd3bc489de789768d5e | None | None | None | None | --- | --- |
| 30 | Sentiment Edge | 116.6% (116.6%) | 109.8% (109.8%) | 12.1% (12.1%) | 0.8 | 7.2% | 56.3% (56.3%) | USDC | Hypercore | 175,650 (257,679) | 1.04 | 0% / 10% (int.) | 1 | 90 | Hyperliquid | Severe | 9999-0x026a2e082a03200a00a97974b7bf7753ce33540f | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/sentiment-edge?a=0x026a2e082a03200a00a97974b7bf7753ce33540f | None | None | None | None | --- | --- |
| 31 | Sentiment Edge | 93.0% (93.0%) | 94.9% (94.9%) | 44.1% (44.1%) | 1.8 | 11.8% | 51.2% (51.2%) | USDC | Hypercore | 166,931 (286,536) | 0.99 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0xb7e7d0fdeff5473ed6ef8d3a762d096a040dbb18 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/sentiment-edge-2?a=0xb7e7d0fdeff5473ed6ef8d3a762d096a040dbb18 | None | None | None | None | --- | --- |
| 32 | Symphony | 36.5% (36.5%) | 94.3% (94.3%) | 6.0% (6.0%) | 0.6 | 9.5% | 50.8% (50.8%) | USDC | Hypercore | 396,547 (916,425) | 0.47 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0x9114a5161f18739ced233190861ea275c8b3a99b | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/symphony?a=0x9114a5161f18739ced233190861ea275c8b3a99b | None | None | None | None | --- | --- |
| 33 | OnlyShorts | 41.1% (41.1%) | 164.9% (164.9%) | 88.0% (88.0%) | 5.2 | 17.2% | 50.2% (50.2%) | USDC | Hypercore | 762,426 (767,966) | 0.35 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0x61b1cf5c2d7c4bf6d5db14f36651b2242e7cba0a | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/onlyshorts?a=0x61b1cf5c2d7c4bf6d5db14f36651b2242e7cba0a | None | None | None | None | --- | --- |
| 34 | Growi HF-2 | 115.3% (115.3%) | 128.5% (128.5%) | 37.1% (37.1%) | 1.4 | 305.8% | 47.3% (47.3%) | USDC | Hypercore | 303,137 (503,943) | 0.93 | 0% / 10% (int.) | 1 | 3 | Hyperliquid | Severe | 9999-0x9b5b1931fa5838a891973f9877c7648c93ee80cc | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/growi-hf-2?a=0x9b5b1931fa5838a891973f9877c7648c93ee80cc | None | None | None | None | --- | --- |
| 35 | HyperSonic | 2.9% (2.9%) | 45.3% (45.3%) | 45.3% (45.3%) | 0.8 | 81.4% | 45.3% (45.3%) | USDC | Hypercore | 77,645 (146,408) | 0.08 | 0% / 10% (int.) | 1 | 6 | Hyperliquid | Severe | 9999-0x071a1341c9d00a5537ff4bf8289049f045fe3abb | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/hypersonic?a=0x071a1341c9d00a5537ff4bf8289049f045fe3abb | None | None | None | None | --- | --- |
| 36 | 69 Jump Street | 66.6% (66.6%) | 60.3% (60.3%) | -19.1% (-19.1%) | -2.5 | 4.5% | 32.5% (32.5%) | USDC | Hypercore | 606,545 (1,067,444) | 1.08 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0xa844d7ac9fa3424c4fd38a25baa23e460ec3e802 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/69-jump-street?a=0xa844d7ac9fa3424c4fd38a25baa23e460ec3e802 | None | None | None | None | --- | --- |
| 37 | ASTEROID | 23.3% (23.3%) | 75.6% (75.6%) | 19.6% (19.6%) | 1.5 | 16.0% | 27.3% (27.3%) | USDC | Hypercore | 366,750 (370,107) | 0.37 | 0% / 10% (int.) | 1 | 15 | Hyperliquid | Severe | 9999-0x9a28b01435ca5c4b39a79ae2c27fce01292a7f39 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/asteroid?a=0x9a28b01435ca5c4b39a79ae2c27fce01292a7f39 | None | None | None | None | --- | --- |
| 38 | JizzJazz | 182.1% (182.1%) | 75.3% (75.3%) | -26.6% (-26.6%) | -2.3 | 10.9% | 21.5% (21.5%) | USDC | Hypercore | 356,763 (389,724) | 1.85 | 0% / 10% (int.) | 1 | 31 | Hyperliquid | Severe | 9999-0x82eba5dc675279cb5967952f0c4b5184505eb17c | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/jizzjazz?a=0x82eba5dc675279cb5967952f0c4b5184505eb17c | None | None | None | None | --- | --- |
| 39 | alpha-032 | 0.6% (0.6%) | 15.5% (15.5%) | 15.5% (15.5%) | 0.5 | 64.8% | 15.5% (15.5%) | USDC | Hypercore | 119,850 (159,013) | 0.04 | 0% / 10% (int.) | 1 | 2 | Hyperliquid | Severe | 9999-0x7d97f7cb48ecc966d75a746b811ca93f1fd6e7ef | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/alpha-032?a=0x7d97f7cb48ecc966d75a746b811ca93f1fd6e7ef | None | None | None | None | --- | --- |
| 40 | HTFV | -0.2% (-0.2%) | -0.7% (-0.7%) | -0.7% (-0.7%) | 0.7 | 98.0% | 15.0% (15.0%) | USDC | Hypercore | 99,812 (113,687) | 0.26 | 0% / 10% (int.) | 1 | 2 | Hyperliquid | Severe | 9999-0x494b62d7dc3b0b221fd6149f4b15374736219c05 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/htfv?a=0x494b62d7dc3b0b221fd6149f4b15374736219c05 | None | None | None | None | --- | --- |
| 41 | Jay Pennies to Jay Dollars | 18.5% (18.5%) | 22.6% (22.6%) | 7.1% (7.1%) | 4.2 | 3.4% | 7.8% (7.8%) | USDC | Hypercore | 162,659 (193,980) | 0.83 | 0% / 10% (int.) | 1 | 19 | Hyperliquid | Severe | 9999-0x3b4f22366857da94f9346f88eac84718c8a8d48d | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/jay-pennies-to-jay-dollars?a=0x3b4f22366857da94f9346f88eac84718c8a8d48d | None | None | None | None | --- | --- |
| 42 | HyperNeutral #1 | 18.6% (18.6%) | 30.6% (30.6%) | 77.6% (77.6%) | 4.9 | 12.1% | 7.0% (7.0%) | USDC | Hypercore | 68,010 (88,229) | 0.64 | 0% / 10% (int.) | 1 | 23 | Hyperliquid | Severe | 9999-0x8bb033130be354eed1110ce7228d7095f001d9fe | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/hyperneutral-1?a=0x8bb033130be354eed1110ce7228d7095f001d9fe | None | None | None | None | --- | --- |
| 43 | PF1 | 33.5% (33.5%) | 53.0% (53.0%) | 16.2% (16.2%) | 1.5 | 28.4% | 4.3% (4.3%) | USDC | Hypercore | 166,978 (205,788) | 0.68 | 0% / 10% (int.) | 1 | 3 | Hyperliquid | Severe | 9999-0xa1b6d8efbcb2fb750a84dbc05649fa4968034f04 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/pf1?a=0xa1b6d8efbcb2fb750a84dbc05649fa4968034f04 | None | None | None | None | --- | --- |
| 44 | Orbit Value Strategies | -3.1% (-3.1%) | -16.2% (-16.2%) | -16.2% (-16.2%) | -0.9 | 25.9% | 3.5% (3.5%) | USDC | Hypercore | 2,932,232 (3,262,045) | 0.18 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0x115849ce84370f25cadcf0d348510d73837e1aa5 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/orbit-value-strategies?a=0x115849ce84370f25cadcf0d348510d73837e1aa5 | None | None | None | None | --- | --- |
| 45 | shortStragey | -69.9% (-69.9%) | -88.1% (-88.1%) | -99.9% (-99.9%) | -3.4 | 0.1% | 0.1% (0.1%) | USDC | Hypercore | 65,355 (65,355) | 0.56 | 0% / 10% (int.) | 1 | 12 | Hyperliquid | Severe | 9999-0xb4d96c7387a45fa2cb170fa1436a86640ab00eb1 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/shortstragey?a=0xb4d96c7387a45fa2cb170fa1436a86640ab00eb1 | None | None | None | None | --- | --- |
| 46 | IlllIlllIllIlllIll | -11.7% (-11.7%) | -34.5% (-34.5%) | 39.4% (39.4%) | 1.4 | 0.0% | -0.0% (-0.0%) | USDC | Hypercore | 69,556 (156,167) | 0.30 | 0% / 10% (int.) | 1 | 5 | Hyperliquid | Severe | 9999-0x0cfeaf978d691e35e86b46e7f8fa4582ff74e3d3 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/illlilllillilllill?a=0x0cfeaf978d691e35e86b46e7f8fa4582ff74e3d3 | None | None | None | None | --- | --- |
| 47 | Barv A | 188.8% (188.8%) | 181.7% (181.7%) | 9.5% (9.5%) | 5.9 | 0.0% | -0.0% (-0.0%) | USDC | Hypercore | 121,509 (121,526) | 1.02 | 0% / 10% (int.) | 1 | 35 | Hyperliquid | Severe | 9999-0x33821578405bd53f0eed2895496922b528d95e21 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/barv-a?a=0x33821578405bd53f0eed2895496922b528d95e21 | None | None | None | None | --- | --- |
| 48 | Akka Hyper AI | -0.3% (-0.3%) | -1.2% (-1.2%) | 4.2% (4.2%) | 0.8 | 1.3% | -0.7% (-0.7%) | USDC | Hypercore | 59,065 (71,098) | 0.28 | 0% / 10% (int.) | 1 | 5 | Hyperliquid | Severe | 9999-0x0e008684ae576f280c5426a89d3f5e1da1fc7398 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/akka-hyper-ai?a=0x0e008684ae576f280c5426a89d3f5e1da1fc7398 | None | None | None | None | --- | --- |
| 49 | Edge & Hedge | -17.9% (-17.9%) | -62.8% (-62.8%) | -62.8% (-62.8%) | -2.9 | 45.5% | -13.2% (-13.2%) | USDC | Hypercore | 258,478 (317,891) | 0.20 | 0% / 10% (int.) | 1 | 13 | Hyperliquid | Severe | 9999-0x060d01aa996003b3731a992462d7f0ba68bf3b04 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/edge-hedge?a=0x060d01aa996003b3731a992462d7f0ba68bf3b04 | None | None | None | None | --- | --- |
| 50 | LowRiskCryptoGainer | 55.6% (55.6%) | 33.7% (33.7%) | 2.7% (2.7%) | 0.7 | 3.9% | -16.5% (-16.5%) | USDC | Hypercore | 134,445 (141,972) | 1.52 | 0% / 10% (int.) | 1 | 54 | Hyperliquid | Severe | 9999-0xd57c9295947b5a616a3933344ef03a1ad67318ea | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/lowriskcryptogainer?a=0xd57c9295947b5a616a3933344ef03a1ad67318ea | None | None | None | None | --- | --- |
| 51 | OnlyUP | -30.9% (-30.9%) | -17.3% (-17.3%) | -43.9% (-43.9%) | -5.9 | 0.0% | -18.2% (-18.2%) | USDC | Hypercore | 74,300 (92,173) | 1.94 | 0% / 10% (int.) | 1 | 10 | Hyperliquid | Severe | 9999-0x7cd7ea8a61e48fc48f5a18502c0622e53d159347 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/onlyup?a=0x7cd7ea8a61e48fc48f5a18502c0622e53d159347 | None | None | None | None | --- | --- |
| 52 | Archangel Quant Fund I | 56.1% (56.1%) | 195.7% (195.7%) | 158.8% (158.8%) | 5.2 | 28.7% | -20.1% (-20.1%) | USDC | Hypercore | 238,108 (247,651) | 0.41 | 0% / 10% (int.) | 1 | 38 | Hyperliquid | Severe | 9999-0x8c7bd04cf8d00d68ce8bc7d2f3f02f98d16a5ab0 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/archangel-quant-fund-i?a=0x8c7bd04cf8d00d68ce8bc7d2f3f02f98d16a5ab0 | None | None | None | None | --- | --- |
| 53 | gaspedal | 104.9% (104.9%) | 94.1% (94.1%) | -68.8% (-68.8%) | -0.9 | 187.2% | -20.4% (-20.4%) | USDC | Hypercore | 161,776 (224,642) | 1.08 | 0% / 10% (int.) | 1 | 48 | Hyperliquid | Severe | 9999-0xff9152cce6fbd30988b1aef70df6f086c99e2c55 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/gaspedal?a=0xff9152cce6fbd30988b1aef70df6f086c99e2c55 | None | None | None | None | --- | --- |
| 54 | AceVault Hyper01 | 1.5% (1.5%) | 2.9% (2.9%) | -6.1% (-6.1%) | -0.2 | 16.9% | -23.4% (-23.4%) | USDC | Hypercore | 445,859 (18,052,373) | 0.51 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0x9e02aca9865e1859bb7865f6f64801e804a173df | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/acevault-hyper01?a=0x9e02aca9865e1859bb7865f6f64801e804a173df | None | None | None | None | --- | --- |
| 55 | AILAB TEST ULTRA | 0.9% (0.9%) | 6.4% (6.4%) | 6.4% (6.4%) | 0.4 | 28.8% | -23.7% (-23.7%) | USDC | Hypercore | 397,681 (397,681) | 0.14 | 0% / 10% (int.) | 1 | 5 | Hyperliquid | Severe | 9999-0x780825f3f0ad6799e304fb843387934c1fa06e70 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/ailab-test-ultra?a=0x780825f3f0ad6799e304fb843387934c1fa06e70 | None | None | None | None | --- | --- |
| 56 | Road to 10 Million | 82.9% (82.9%) | 57.4% (57.4%) | -15.5% (-15.5%) | -5.0 | 0.0% | -28.3% (-28.3%) | USDC | Hypercore | 141,859 (254,560) | 1.33 | 0% / 10% (int.) | 1 | 4 | Hyperliquid | Severe | 9999-0x04027058bb4aff889402ffb6e4743a96ce88149a | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/road-to-10-million?a=0x04027058bb4aff889402ffb6e4743a96ce88149a | None | None | None | None | --- | --- |
| 57 | Aquila Chrysaetos | 20.0% (20.0%) | 39.6% (39.6%) | 16.4% (16.4%) | 2.4 | 11.9% | -29.9% (-29.9%) | USDC | Hypercore | 72,332 (78,581) | 0.54 | 0% / 10% (int.) | 1 | 16 | Hyperliquid | Severe | 9999-0x50e2fe552727a4b8692c192b4f96d1a6b0d44394 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/aquila-chrysaetos?a=0x50e2fe552727a4b8692c192b4f96d1a6b0d44394 | None | None | None | None | --- | --- |
| 58 | FC Genesis - Quantum | -13.8% (-13.8%) | -29.2% (-29.2%) | -18.9% (-18.9%) | -7.1 | 0.0% | -30.7% (-30.7%) | USDC | Hypercore | 2,546,153 (2,801,933) | 0.43 | 0% / 10% (int.) | 1 | 55 | Hyperliquid | Severe | 9999-0xa6a34f0bf2ccea9a1ddf9e9a973f17c498dc5e40 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/fc-genesis-quantum?a=0xa6a34f0bf2ccea9a1ddf9e9a973f17c498dc5e40 | None | None | None | None | --- | --- |
| 59 | Tortoise Fund | -9.1% (-9.1%) | -13.1% (-13.1%) | -11.6% (-11.6%) | 0.3 | 40.6% | -38.8% (-38.8%) | USDC | Hypercore | 159,130 (202,815) | 0.68 | 0% / 10% (int.) | 1 | 30 | Hyperliquid | Severe | 9999-0xd914c5164bc253676386269d90dcf56b441cf75b | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/tortoise-fund?a=0xd914c5164bc253676386269d90dcf56b441cf75b | None | None | None | None | --- | --- |
| 60 | Liquidar Momentum Vault | -9.8% (-9.8%) | -37.5% (-37.5%) | -37.5% (-37.5%) | -0.8 | 37.1% | -39.1% (-39.1%) | USDC | Hypercore | 57,107 (62,883) | 0.22 | 0% / 10% (int.) | 1 | 6 | Hyperliquid | Severe | 9999-0x5ba4c8d16464621608b7333fd44b1e74a1b8d189 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/liquidar-momentum-vault?a=0x5ba4c8d16464621608b7333fd44b1e74a1b8d189 | None | None | None | None | --- | --- |
| 61 | HyperTwin - Growi HF 2x | 0.7% (0.7%) | 1.0% (1.0%) | 45.9% (45.9%) | 2.0 | 466.7% | -39.6% (-39.6%) | USDC | Hypercore | 132,720 (702,686) | 0.64 | 0% / 10% (int.) | 1 | 111 | Hyperliquid | Severe | 9999-0x15be61aef0ea4e4dc93c79b668f26b3f1be75a66 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/hypertwin-growi-hf-2x?a=0x15be61aef0ea4e4dc93c79b668f26b3f1be75a66 | None | None | None | None | --- | --- |
| 62 | R-1 | -4.7% (-4.7%) | -28.6% (-28.6%) | -28.6% (-28.6%) | -1.0 | 34.1% | -40.0% (-40.0%) | USDC | Hypercore | 56,240 (63,857) | 0.14 | 0% / 10% (int.) | 1 | 1 | Hyperliquid | Severe | 9999-0x77a0f8bae276f489f0f7cc2752322805317dcbb1 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/r-1?a=0x77a0f8bae276f489f0f7cc2752322805317dcbb1 | None | None | None | None | --- | --- |
| 63 | BTC/ETH CTA | AIM | 12.6% (12.6%) | 21.0% (21.0%) | 4.1% (4.1%) | 0.5 | 30.5% | -52.3% (-52.3%) | USDC | Hypercore | 98,554 (141,407) | 0.62 | 0% / 10% (int.) | 1 | 8 | Hyperliquid | Severe | 9999-0xbeebbbe817a69d60dd62e0a942032bc5414dae1c | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/btc-eth-cta-aim?a=0xbeebbbe817a69d60dd62e0a942032bc5414dae1c | None | None | None | None | --- | --- |
| 64 | ski lambo beach | 257.6% (257.6%) | 247.1% (247.1%) | -3.9% (-3.9%) | 0.1 | 43.6% | -55.0% (-55.0%) | USDC | Hypercore | 143,295 (225,167) | 1.02 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0x66e541024ca4c50b8f6c0934b8947c487d211661 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/ski-lambo-beach?a=0x66e541024ca4c50b8f6c0934b8947c487d211661 | None | None | None | None | --- | --- |
| 65 | BULBUL2DAO | 182.6% (182.6%) | 141.7% (141.7%) | 14.6% (14.6%) | 1.3 | 246.2% | -59.6% (-59.6%) | USDC | Hypercore | 95,132 (305,011) | 1.18 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0x65aee08c9235025355ac6c5ad020fb167ecef4fe | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/bulbul2dao?a=0x65aee08c9235025355ac6c5ad020fb167ecef4fe | None | None | None | None | --- | --- |
| 66 | Fund Inception | -7.7% (-7.7%) | -32.9% (-32.9%) | -32.9% (-32.9%) | -0.0 | 114.1% | -62.1% (-62.1%) | USDC | Hypercore | 51,293 (53,546) | 0.20 | 0% / 10% (int.) | 1 | 12 | Hyperliquid | Severe | 9999-0xce56eb8261493462e3eb00a72c2bda2cb5fdccee | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/fund-inception?a=0xce56eb8261493462e3eb00a72c2bda2cb5fdccee | None | None | None | None | --- | --- |
| 67 | Darkframe | -20.7% (-20.7%) | -29.7% (-29.7%) | -34.9% (-34.9%) | -0.2 | 179.6% | -62.7% (-62.7%) | USDC | Hypercore | 372,428 (713,299) | 0.66 | 0% / 10% (int.) | 1 | 10 | Hyperliquid | Severe | 9999-0x565ab99e1515c6dd3b8852b15354638d467f999a | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/darkframe?a=0x565ab99e1515c6dd3b8852b15354638d467f999a | None | None | None | None | --- | --- |
| 68 | Super Saiyan 孫悟空 | -76.6% (-76.6%) | -70.9% (-70.9%) | -96.7% (-96.7%) | -3.8 | 134.8% | -65.5% (-65.5%) | USDC | Hypercore | 60,694 (365,032) | 1.18 | 0% / 10% (int.) | 1 | 109 | Hyperliquid | Severe | 9999-0x7c5885d2974457eafb1a3a4d848c358111f0714d | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/super-saiyan-sun-wu-kong?a=0x7c5885d2974457eafb1a3a4d848c358111f0714d | None | None | None | None | --- | --- |
| 69 | 22Cap | 311.8% (311.8%) | 88.6% (88.6%) | -11.4% (-11.4%) | -2.3 | 4.1% | -67.3% (-67.3%) | USDC | Hypercore | 129,526 (192,867) | 2.23 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0xba939edf38c0ae0cc689c98b492e0535f43e4550 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/22cap?a=0xba939edf38c0ae0cc689c98b492e0535f43e4550 | None | None | None | None | --- | --- |
| 70 | Hyperdash Vault #1 | 32.1% (32.1%) | 28.2% (28.2%) | -46.3% (-46.3%) | -2.2 | 30.9% | -69.7% (-69.7%) | USDC | Hypercore | 151,433 (730,901) | 1.12 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0x4078582c42fdb547b1397fabb5d5a4beab81be9e | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/hyperdash-vault-1?a=0x4078582c42fdb547b1397fabb5d5a4beab81be9e | None | None | None | None | --- | --- |
| 71 | Jade Lotus Capital | 269.1% (269.1%) | 489.0% (489.0%) | 40.7% (40.7%) | 1.4 | 79.0% | -72.0% (-72.0%) | USDC | Hypercore | 274,236 (483,990) | 0.74 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0xbc5bf88fd012612ba92c5bd96e183955801b7fdc | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/jade-lotus-capital?a=0xbc5bf88fd012612ba92c5bd96e183955801b7fdc | None | None | None | None | --- | --- |
| 72 | AnnA | -20.3% (-20.3%) | -39.6% (-39.6%) | -40.0% (-40.0%) | -1.1 | 121.4% | -75.6% (-75.6%) | USDC | Hypercore | 221,569 (280,529) | 0.45 | 0% / 10% (int.) | 1 | 6 | Hyperliquid | Severe | 9999-0x4391c22edeece3a9aa5b8f3c1a3a25378980ff10 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/anna?a=0x4391c22edeece3a9aa5b8f3c1a3a25378980ff10 | None | None | None | None | --- | --- |
| 73 | [ Tachyon ] HYPE | 0.6% (0.6%) | 2.3% (2.3%) | 15.7% (15.7%) | 1.0 | 55.3% | -78.6% (-78.6%) | USDC | Hypercore | 51,349 (59,482) | 0.28 | 0% / 10% (int.) | 1 | 8 | Hyperliquid | Severe | 9999-0x131ab0c5032079bb9286ffc1828e11d5931e77bb | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/tachyon-hype?a=0x131ab0c5032079bb9286ffc1828e11d5931e77bb | None | None | None | None | --- | --- |
| 74 | Sifu | -100.0% (-100.0%) | -99.7% (-99.7%) | 127.3% (127.3%) | 3.1 | 292.4% | -85.6% (-85.6%) | USDC | Hypercore | 2,079,687 (15,288,788) | 2.17 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0xf967239debef10dbc78e9bbbb2d8a16b72a614eb | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/sifu?a=0xf967239debef10dbc78e9bbbb2d8a16b72a614eb | None | None | None | None | --- | --- |
| 75 | Pulse@Evo-α | -16.6% (-16.6%) | -35.7% (-35.7%) | -50.6% (-50.6%) | -5.4 | 14.9% | -88.1% (-88.1%) | USDC | Hypercore | 85,833 (106,549) | 0.41 | 0% / 10% (int.) | 1 | 7 | Hyperliquid | Severe | 9999-0x22a60014185f1486afb045219f76e4007fb71e4e | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/pulse-evo-a?a=0x22a60014185f1486afb045219f76e4007fb71e4e | None | None | None | None | --- | --- |
| 76 | Coinseer_AI | -13.3% (-13.3%) | -79.4% (-79.4%) | -79.4% (-79.4%) | -2.8 | 51.0% | -88.9% (-88.9%) | USDC | Hypercore | 85,127 (107,941) | 0.09 | 0% / 10% (int.) | 1 | 23 | Hyperliquid | Severe | 9999-0xf36e402dbc9e6e904e719f680dc056c9d57cca24 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/coinseer-ai?a=0xf36e402dbc9e6e904e719f680dc056c9d57cca24 | None | None | None | None | --- | --- |
| 77 | Martyrbit | -8.1% (-8.1%) | -7.4% (-7.4%) | -38.7% (-38.7%) | -2.0 | 14.6% | -89.2% (-89.2%) | USDC | Hypercore | 1,055,397 (1,891,339) | 1.10 | 0% / 10% (int.) | 1 | 12 | Hyperliquid | Severe | 9999-0x27d33e77c8e6335089f56e399bf706ae9ad402b9 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/martyrbit?a=0x27d33e77c8e6335089f56e399bf706ae9ad402b9 | None | None | None | None | --- | --- |
| 78 | hidden marko fund | 9.4% (9.4%) | 16.1% (16.1%) | 46.8% (46.8%) | 1.5 | 238.7% | -89.5% (-89.5%) | USDC | Hypercore | 154,835 (203,009) | 0.60 | 0% / 10% (int.) | 1 | 24 | Hyperliquid | Severe | 9999-0xc497f1f8840dd65affbab1a610b6e558844743d4 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/hidden-marko-fund?a=0xc497f1f8840dd65affbab1a610b6e558844743d4 | None | None | None | None | --- | --- |
| 79 | reverse mid curver | -24.5% (-24.5%) | -69.2% (-69.2%) | -69.2% (-69.2%) | -3.0 | 67.0% | -92.9% (-92.9%) | USDC | Hypercore | 165,693 (216,569) | 0.24 | 0% / 10% (int.) | 1 | 2 | Hyperliquid | Severe | 9999-0x797327122c5ed1b1530e452b7f8723ba834b4c6a | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/reverse-mid-curver?a=0x797327122c5ed1b1530e452b7f8723ba834b4c6a | None | None | None | None | --- | --- |
| 80 | 100x | 10.1% (10.1%) | 29.6% (29.6%) | -9.7% (-9.7%) | 0.1 | 36.7% | -93.6% (-93.6%) | USDC | Hypercore | 129,761 (175,218) | 0.37 | 0% / 10% (int.) | 1 | 23 | Hyperliquid | Severe | 9999-0xa0cbceaac4dc736c457b7c340865695e2b3d0fc9 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/100x?a=0xa0cbceaac4dc736c457b7c340865695e2b3d0fc9 | None | None | None | None | --- | --- |
| 81 | Ultron | -13.5% (-13.5%) | -48.5% (-48.5%) | -48.5% (-48.5%) | -0.8 | 108.8% | -94.0% (-94.0%) | USDC | Hypercore | 3,279,768 (5,245,610) | 0.22 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0x45e7014f092c5f9c39482caec131346f13ac5e73 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/ultron?a=0x45e7014f092c5f9c39482caec131346f13ac5e73 | None | None | None | None | --- | --- |
| 82 | Black Ops | -20.9% (-20.9%) | -85.1% (-85.1%) | -85.1% (-85.1%) | -3.0 | 73.7% | -94.1% (-94.1%) | USDC | Hypercore | 176,744 (223,253) | 0.12 | 0% / 10% (int.) | 1 | 5 | Hyperliquid | Severe | 9999-0x49a648936441b22f28f069d3c088928682b277ae | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/black-ops?a=0x49a648936441b22f28f069d3c088928682b277ae | None | None | None | None | --- | --- |
| 83 | Satori Quantum HF Vault | 183.3% (183.3%) | 193.8% (193.8%) | -56.5% (-56.5%) | -0.7 | 243.6% | -96.2% (-96.2%) | USDC | Hypercore | 611,074 (1,049,954) | 0.97 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0xbbf7d7a9d0eaeab4115f022a6863450296112422 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/satori-quantum-hf-vault?a=0xbbf7d7a9d0eaeab4115f022a6863450296112422 | None | None | None | None | --- | --- |
| 84 | Delta_01 | 739.6% (739.6%) | 319.5% (319.5%) | -78.9% (-78.9%) | -1.4 | 68.2% | -96.6% (-96.6%) | USDC | Hypercore | 497,444 (822,714) | 1.48 | 0% / 10% (int.) | 1 | 11 | Hyperliquid | Severe | 9999-0x3005fade4c0df5e1cd187d7062da359416f0eb8e | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/delta-01?a=0x3005fade4c0df5e1cd187d7062da359416f0eb8e | None | None | None | None | --- | --- |
| 85 | IQ [L/S] | -25.1% (-25.1%) | -67.5% (-67.5%) | -67.5% (-67.5%) | -0.9 | 111.2% | -99.5% (-99.5%) | USDC | Hypercore | 52,383 (129,316) | 0.26 | 0% / 10% (int.) | 1 | 6 | Hyperliquid | Severe | 9999-0x3fe404ae27cc5eef4a08e226ae2ac4f5be7a06c4 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/iq-l-s?a=0x3fe404ae27cc5eef4a08e226ae2ac4f5be7a06c4 | None | None | None | None | --- | --- |
| 86 | PCC | -75.1% (-75.1%) | -72.3% (-72.3%) | -94.3% (-94.3%) | -4.4 | 5.2% | -99.9% (-99.9%) | USDC | Hypercore | 64,152 (512,331) | 1.08 | 0% / 10% (int.) | 1 | 1 | Hyperliquid | Severe | 9999-0x65dfa218376939c7e18a6fb8e264ed261b5f9e92 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/pcc?a=0x65dfa218376939c7e18a6fb8e264ed261b5f9e92 | None | None | None | None | --- | --- |
| 87 | drkmttr | -41.4% (-41.4%) | -93.1% (-93.1%) | -93.1% (-93.1%) | -3.6 | 121.0% | -99.9% (-99.9%) | USDC | Hypercore | 3,916,102 (4,312,573) | 0.20 | 0% / 10% (int.) | 1 | 26 | Hyperliquid | Severe | 9999-0xc179e03922afe8fa9533d3f896338b9fb87ce0c8 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/drkmttr?a=0xc179e03922afe8fa9533d3f896338b9fb87ce0c8 | None | None | None | None | --- | --- |
| 88 | Opportunistic Fund 1 | -78.7% (-78.7%) | -99.8% (-99.8%) | -99.8% (-99.8%) | -5.7 | 143.0% | -99.9% (-99.9%) | USDC | Hypercore | 53,108 (547,335) | 0.24 | 0% / 10% (int.) | 1 | 4 | Hyperliquid | Severe | 9999-0xfb7b73ff7c93f5552541de37454ffa0f8b76462a | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/opportunistic-fund-1?a=0xfb7b73ff7c93f5552541de37454ffa0f8b76462a | None | None | None | None | --- | --- |
| 89 | Hyperliquidity Trader (HLT) | 4029.9% (4029.9%) | 353.5% (353.5%) | -85.3% (-85.3%) | -3.0 | 34.4% | -100.0% (-100.0%) | USDC | Hypercore | 472,754 (3,406,584) | 2.46 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0x5a733b25a17dc0f26b862ca9e32b439801b1a8c7 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/hyperliquidity-trader-hlt?a=0x5a733b25a17dc0f26b862ca9e32b439801b1a8c7 | None | None | None | None | --- | --- |
| 90 | Tera Liquid | -56.1% (-56.1%) | -96.8% (-96.8%) | -96.8% (-96.8%) | -3.6 | 149.2% | -100.0% (-100.0%) | USDC | Hypercore | 61,015 (149,699) | 0.24 | 0% / 10% (int.) | 1 | 3 | Hyperliquid | Severe | 9999-0x15a141990fc6591838646467273c41c92999772f | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/tera-liquid?a=0x15a141990fc6591838646467273c41c92999772f | None | None | None | None | --- | --- |
| 91 | Coinseer2 | -39.3% (-39.3%) | -100.0% (-100.0%) | -100.0% (-100.0%) | -4.1 | 158.7% | -100.0% (-100.0%) | USDC | Hypercore | 54,622 (97,348) | 0.06 | 0% / 10% (int.) | 1 | 17 | Hyperliquid | Severe | 9999-0x8b1a2e764fd2976506fdb00035a948929b2f3198 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/coinseer2?a=0x8b1a2e764fd2976506fdb00035a948929b2f3198 | None | None | None | None | --- | --- |
| 92 | MC Recovery Fund | -45.7% (-45.7%) | -68.7% (-68.7%) | -92.9% (-92.9%) | -3.1 | 340.1% | -100.0% (-100.0%) | USDC | Hypercore | 1,003,062 (2,802,086) | 0.53 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0x914434e8a235cb608a94a5f70ab8c40927152a24 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/mc-recovery-fund?a=0x914434e8a235cb608a94a5f70ab8c40927152a24 | None | None | None | None | --- | --- |
| 93 | DailyTradeAI Low risk | -59.5% (-59.5%) | -44.7% (-44.7%) | -98.7% (-98.7%) | -3.3 | 390.4% | -100.0% (-100.0%) | USDC | Hypercore | 86,457 (504,826) | 1.52 | 0% / 10% (int.) | 1 | 89 | Hyperliquid | Severe | 9999-0x44ff912d0f88e27419ec0ddc950096609a9b6997 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/dailytradeai-low-risk?a=0x44ff912d0f88e27419ec0ddc950096609a9b6997 | None | None | None | None | --- | --- |
| 94 | Winwin | -64.9% (-64.9%) | -49.3% (-49.3%) | -95.7% (-95.7%) | -6.3 | 79.1% | -100.0% (-100.0%) | USDC | Hypercore | 71,130 (136,732) | 1.54 | 0% / 10% (int.) | 1 | 60 | Hyperliquid | Severe | 9999-0xa7f152a5f79bb5483c079610203d8fc03fd77c8e | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/winwin?a=0xa7f152a5f79bb5483c079610203d8fc03fd77c8e | None | None | None | None | --- | --- |
| 95 | Long LINK Short XRP | -76.3% (-76.3%) | -91.5% (-91.5%) | -99.9% (-99.9%) | -2.3 | 343.2% | -100.0% (-100.0%) | USDC | Hypercore | 875,358 (1,014,768) | 0.58 | 0% / 10% (int.) | 1 | 156 | Hyperliquid | Severe | 9999-0x73ce82fb75868af2a687e9889fcf058dd1cf8ce9 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/long-link-short-xrp?a=0x73ce82fb75868af2a687e9889fcf058dd1cf8ce9 | None | None | None | None | --- | --- |
| 96 | Mattertrades | -21.8% (-21.8%) | -100.0% (-100.0%) | -100.0% (-100.0%) | -6.3 | 241.7% | -100.0% (-100.0%) | USDC | Hypercore | 192,238 (285,564) | 0.01 | 0% / 10% (int.) | 1 | 100 | Hyperliquid | Severe | 9999-0x4158f13cfa57657f91000fa8b83580dccd4ffce9 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/mattertrades?a=0x4158f13cfa57657f91000fa8b83580dccd4ffce9 | None | None | None | None | --- | --- |
| 97 | SMM Foundation | -51.9% (-51.9%) | -100.0% (-100.0%) | -100.0% (-100.0%) | -9.2 | 331.4% | -100.0% (-100.0%) | USDC | Hypercore | 95,173 (110,573) | 0.02 | 0% / 10% (int.) | 1 | 3 | Hyperliquid | Severe | 9999-0x45bae5219bbbcce476e8ac92c26593ad9ba93d01 | VaultFlag.perp_dex_trading_vault | Profit calculations are cleaned from deposit/redeem net flow and differ from the account Profit and Loss (PnL) on Hyperliquid website | https://tradingstrategy.ai/trading-view/hyperliquid/vaults/smm-foundation?a=0x45bae5219bbbcce476e8ac92c26593ad9ba93d01 | None | None | None | None | --- | --- |