Use when the user asks for spot-perp basis trade, basis arbitrage, cash-and-carry, perp discount, or any setup that reads the spot–perp basis as a positioning signal. Long-perp leg only — pure two-leg basis arb requires a paired spot short (or long) which Freqtrade can't run cleanly. The strategy below captures the directional read, not the hedged carry.
npx skills add https://github.com/Superior-Trade/superior-skills --skill basis-arb
True basis arbitrage is a two-leg trade:
You earn the basis as the legs converge. Freqtrade is a single-leg engine — it can't run paired hedged trades on the same ticker. The strategy below captures the directional signal that "basis flipping negative + funding negative = bullish positioning shift" and goes long the perp accordingly. It's a momentum read on positioning, not a hedged arb.
If you want the actual hedged version, run an external system (or a custom Hyperliquid-only multi-leg runtime). Don't deploy this template thinking it's market-neutral.
| Window | BTC/USDC:USDC 1h, 2026-01-01 → 2026-05-01 |
|---|---|
| Trades | 0 (no spot leg available in the engine) |
| Backtest ID | 01kr42hegps9w20njsty2cqb41 |
The Superior Trade backtest engine doesn't currently expose Hyperliquid spot OHLCV alongside perp pairs via Freqtrade's informative_pairs mechanism, so the spot_close column is never populated and the entry filter never fires. The strategy code is structurally sound — it runs cleanly to completion with 0 trades — but this template can't be validated end-to-end on the current backtest engine. Two paths:
basisHistory or a simple notebook).informative_pairs spot fetch with a CoinGlass /api/futures/basis/history call from a side-channel cache. Out of scope for this template; would be a Phase 2 backend change.The strategy is shipped as a directional blueprint, not a live-validated runtime. Treat it as a teachable template for how to wire spot-perp basis into a Freqtrade strategy, rather than an off-the-shelf deployment.
A user asks for:
This template assumes Hyperliquid has both the spot and perp pair for the asset (BTC, ETH, SOL — the few HL has spot books for). For perp-only assets, this strategy can't compute basis and won't fire.
Two dp.get_pair_dataframe calls:
strategy-funding-rate-arbitrage)informative_pairs() so we can compute basisBasis = (perp_mark - spot_mid) / spot_mid. Annualised by funding period.
from freqtrade.strategy import IStrategy, informative
from datetime import datetime
import pandas as pd
import talib.abstract as ta
def perp_to_spot(pair: str) -> str:
"""`BTC/USDC:USDC` → `BTC/USDC`. HL spot lives at the un-suffixed pair."""
return pair.split(":")[0] if ":" in pair else pair
class BasisFlippingStrategy(IStrategy):
minimal_roi = {"0": 100.0}
stoploss = -0.04
trailing_stop = False
timeframe = "1h"
process_only_new_candles = True
startup_candle_count = 30
can_short = False
def informative_pairs(self):
# Tell Freqtrade we need spot-side OHLCV for every perp in the
# whitelist. The base pair list is set by the user; we mirror
# each entry to its spot equivalent.
pairs = self.dp.current_whitelist()
return [(perp_to_spot(p), self.timeframe) for p in pairs if ":" in p]
def populate_indicators(self, dataframe: pd.DataFrame, metadata: dict) -> pd.DataFrame:
perp_pair = metadata["pair"]
spot_pair = perp_to_spot(perp_pair)
# Funding rate via the dedicated candle type.
try:
funding = self.dp.get_pair_dataframe(
pair=perp_pair,
timeframe="1h",
candle_type="funding_rate",
)
except Exception:
funding = pd.DataFrame()
if not funding.empty and "open" in funding.columns:
f = funding[["date", "open"]].rename(columns={"open": "funding_rate"}).copy()
dataframe = dataframe.merge(f, on="date", how="left")
dataframe["funding_rate"] = dataframe["funding_rate"].ffill().fillna(0.0)
dataframe["funding_apr"] = dataframe["funding_rate"] * 24 * 365
else:
dataframe["funding_rate"] = 0.0
dataframe["funding_apr"] = 0.0
# Spot OHLCV — declared via `informative_pairs`.
try:
spot = self.dp.get_pair_dataframe(pair=spot_pair, timeframe=self.timeframe)
except Exception:
spot = pd.DataFrame()
# Initialise required columns up front so the entry guard can
# read them even when the spot leg isn't available on this
# dataset. Hyperliquid's backtest cache doesn't always expose
# the matching spot pair via informative_pairs — without these
# default columns the strategy crashes with KeyError on the
# first candle.
dataframe["spot_close"] = float("nan")
dataframe["basis"] = 0.0
dataframe["basis_apr"] = 0.0
if not spot.empty and "close" in spot.columns:
s = spot[["date", "close"]].rename(columns={"close": "spot_close"}).copy()
dataframe = dataframe.drop(columns=["spot_close"])
dataframe = dataframe.merge(s, on="date", how="left")
dataframe["spot_close"] = dataframe["spot_close"].ffill()
# Instantaneous basis (perp - spot) / spot. Annualise as
# basis_apr ≈ basis * (8h_settlement_periods/year) ≈ basis * 1095
# (3 settlements/day × 365). HL's actual basis convergence
# path is messier but this is the standard back-of-envelope.
dataframe["basis"] = (
dataframe["close"] - dataframe["spot_close"]
) / dataframe["spot_close"]
dataframe["basis_apr"] = dataframe["basis"] * 1095
dataframe["atr_24"] = ta.ATR(dataframe, timeperiod=24)
return dataframe
def populate_entry_trend(self, dataframe: pd.DataFrame, metadata: dict) -> pd.DataFrame:
# Long perp when:
# 1. Basis flipped negative (perp at discount to spot)
# 2. Funding is also negative (shorts paying — same crowd)
# 3. Spot isn't crashing (close > 24h SMA proxy)
# Only fire when the spot leg is actually available — without
# spot data the basis is meaningless and we'd be entering on a
# zero-filled signal.
sma_spot = dataframe["spot_close"].rolling(24).mean()
spot_available = dataframe["spot_close"].notna()
dataframe.loc[
spot_available
& (dataframe["basis_apr"] < -0.05)
& (dataframe["funding_apr"] < 0.0)
& (dataframe["spot_close"] > sma_spot)
& (dataframe["volume"] > 0),
"enter_long",
] = 1
return dataframe
def populate_exit_trend(self, dataframe: pd.DataFrame, metadata: dict) -> pd.DataFrame:
# Exit when basis converges back to neutral (≥ 0) — the structural
# pressure has been worked off.
dataframe.loc[(dataframe["basis_apr"] >= 0.0), "exit_long"] = 1
return dataframe
def custom_exit(self, pair: str, trade, current_time: datetime,
current_rate: float, current_profit: float, **kwargs):
# Basis convergence is slow but persistent. 48h is the patience floor.
elapsed_h = (current_time - trade.open_date_utc).total_seconds() / 3600.0
if elapsed_h >= 48:
return "timeout_48h"
return None
{
"exchange": { "name": "hyperliquid", "pair_whitelist": ["BTC/USDC:USDC"] },
"stake_currency": "USDC",
"stake_amount": 100,
"timeframe": "1h",
"max_open_trades": 1,
"stoploss": -0.04,
"minimal_roi": { "0": 100.0 },
"trading_mode": "futures",
"margin_mode": "cross",
"entry_pricing": { "price_side": "same" },
"exit_pricing": { "price_side": "same" },
"pairlists": [{ "method": "StaticPairList" }]
}
Pair must have a corresponding HL spot pair. Today that's effectively BTC, ETH, SOL, HYPE — the few assets with both perp and spot books on Hyperliquid. Other perps will return zero basis and never fire.
| Knob | Effect |
|---|---|
| basis_apr < -0.05 | Stricter (-0.10) → only deeper discounts. Looser (-0.02) → more entries, weaker signal. |
| funding_apr < 0.0 | The "shorts paying" confirmation. Drop this to fire on basis alone (faster, noisier). |
| spot_close > sma_24 | The "spot isn't crashing" filter. Without it, the strategy buys into spot drawdowns where the basis is negative because everything's down. |
| timeout_48h | Basis trades take days, not hours. Don't tighten below 24h. |
can_short = True and an isolated-margin perp config.informative_pairs declared the spot leg.-0.04 is the floor; tighter and ATR noise stops you out before the trade works.informative_pairs — https://www.freqtrade.io/en/stable/strategy-customization/#additional-data-informative_pairsfunding-rate-arbitrage skillIntegration with protocols.io API for managing scientific protocols. This skill should be used when working with protocols.io to search, create, update, or publish protocols; manage protocol steps and materials; handle discussions and comments; organize workspaces; upload and manage files; or integrate protocols.io functionality into workflows. Applicable for protocol discovery, collaborative protocol development, experiment tracking, lab protocol management, and scientific documentation.
Analyzes job descriptions and generates tailored resumes that highlight relevant experience, skills, and achievements to maximize interview chances
Generate Excalidraw diagrams from natural language descriptions. Use when asked to "create a diagram", "make a flowchart", "visualize a process", "draw a system architecture", "create a mind map", or "generate an Excalidraw file". Supports flowcharts, relationship diagrams, mind maps, and system architecture diagrams. Outputs .excalidraw JSON files that can be opened directly in Excalidraw.
Build and distribute Expo development clients locally or via TestFlight
Use when you have a written implementation plan to execute in a separate session with review checkpoints
Data structure for annotated matrices in single-cell analysis. Use when working with .h5ad files or integrating with the scverse ecosystem. This is the data format skill—for analysis workflows use scanpy; for probabilistic models use scvi-tools; for population-scale queries use cellxgene-census.
Benchling R&D platform integration. Access registry (DNA, proteins), inventory, ELN entries, workflows via API, build Benchling Apps, query Data Warehouse, for lab data management automation.
Comprehensive molecular biology toolkit. Use for sequence manipulation, file parsing (FASTA/GenBank/PDB), phylogenetics, and programmatic NCBI/PubMed access (Bio.Entrez). Best for batch processing, custom bioinformatics pipelines, BLAST automation. For quick lookups use gget; for multi-service integration use bioservices.
Take superior-trade/basis-arb from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.