MINARA

Glossary

Finance, trading, and system acronyms you'll see across the docs

Plain-language definitions of the specialized terms Minara docs throw at you. If you see an acronym or word you don't recognize, check here first.

Terms are grouped by topic. Use Ctrl/Cmd + F to jump to one.

Trading basics

TermWhat it meansExample
SpotBuying or selling an asset for immediate delivery at today's price. The "normal" way to trade.Buying $100 of BTC right now.
Perps / Perpetual futuresLeveraged derivative contracts with no expiry. You bet on price direction with borrowed money."Long BTC 5x" borrows 4× your collateral so a +1% move becomes +5%.
LeverageMultiplying your exposure. 5x leverage = you control 5× the position for the same capital.Gains and losses are both 5× bigger.
LongBetting the price goes up."Long ETH" = you profit if ETH rises.
ShortBetting the price goes down."Short BTC" = you profit if BTC falls.
DCA (Dollar-Cost Averaging)Buying a fixed dollar amount on a recurring schedule (weekly, monthly) regardless of price."$100 of BTC every Monday."
SwapExchanging one token for another via a DEX aggregator.USDC → SOL on Jupiter.
SlippageThe difference between the price you expected and the price you got. Bigger orders on thinner markets → more slippage.Quoted at $100, filled at $100.30 → 0.3% slippage.
Funding ratePeriodic payment (usually every 8h) between long and short perps holders to keep the perp price near spot. Positive = longs pay shorts.High positive funding = longs are crowded.
Stop-lossAn order that automatically sells if price drops to a threshold — limits your downside.Buy BTC at $65k with stop at $62k → max loss ~4.6%.
Take-profitMirror of stop-loss: auto-sells when price hits a profit target.Long BTC with TP at +10%.
TP / SLShort for Take-Profit / Stop-Loss.
Aggregator / DEX aggregatorA router that finds the best price across many DEXs.Jupiter, OKX DEX, 1inch.

Risk and portfolio

TermWhat it meansExample
DrawdownPeak-to-trough decline from a portfolio's high water mark.Portfolio hits $10k, drops to $8k → 20% drawdown.
PnL (Profit and Loss)Realized or unrealized gain/loss on a position."Unrealized PnL: +$200" means you'd make $200 if you closed now.
RebalancingSelling some winners and buying some losers to return to a target allocation.Target 50/50 BTC/ETH drifts to 60/40 → sell 10% BTC, buy 10% ETH.
LiquidationWhen a leveraged position's collateral is exhausted and the exchange force-closes it.Typically at ≥80% of initial margin lost.
Risk profileYour tolerance for loss: Conservative / Moderate / Aggressive. Shapes how the agent frames advice.Conservative → agent warns harder before perps.

On-chain & market indicators

TermWhat it meansSee also
TVL (Total Value Locked)Dollar value of assets deposited in a protocol. Rising TVL ≈ user adoption.DeFi analysis.
MVRV (Market Value to Realized Value)Ratio of a coin's market cap to the aggregate cost basis of its holders. MVRV > 3 historically signals overheating; < 1 signals capitulation.BTC cycle analysis.
LTH / STH (Long-Term / Short-Term Holder)On-chain cohorts: LTH holds ≥155 days, STH < 155. Their behaviors diverge across cycles.Cycle phase detection.
SOPR (Spent Output Profit Ratio)Indicates whether spent outputs are in profit (SOPR > 1) or loss (< 1).Market sentiment.
Funding rateSee Trading basics above.
RSI (Relative Strength Index)14-period momentum oscillator 0–100. >70 often "overbought", <30 "oversold".Technical analysis.
VolumeDollar value of trades in a window. Rising price + rising volume = stronger signal than rising price alone.
Fear & Greed IndexA 0–100 crypto sentiment score. Extreme fear (<20) historically coincided with buying opportunities.

Crypto-specific

TermWhat it means
WhaleSomeone (or wallet) holding enough to move prices. Typically ≥$1M position size.
KOL (Key Opinion Leader)A social-media influencer whose posts move token prices.
AirdropFree tokens distributed to wallets that meet eligibility criteria (used an app, held a token, etc.).
StablecoinA token pegged to $1 (or another fiat). USDC, USDT, DAI.
Gas feeThe cost of getting a transaction included in a block. Varies by chain.
Mainnet / TestnetMainnet is the real chain with real money. Testnet is a sandbox with fake tokens.
BridgeMoving assets between chains. Always riskier than single-chain actions.
Rug (pull)A scam where developers drain liquidity after attracting investors.
HoneypotA token you can buy but can't sell — often a scam contract.
pump.funA Solana platform for one-click meme-coin launches. Meme coins there are extremely speculative.

Traditional finance

TermWhat it means
ETFExchange-Traded Fund. A tradeable basket of assets (e.g. SPY tracks the S&P 500).
EquityStock in a company.
FuturesA contract to buy/sell an asset at a fixed price on a future date. Crypto perps are a futures variant without expiry.
FX / ForexForeign exchange — currency trading (USD/JPY, EUR/USD, etc.).
IndexA basket representing a market slice (S&P 500, NASDAQ, VIX volatility index).
CommodityPhysical goods traded as futures (gold, crude, wheat).
MacroEconomy-wide factors (interest rates, inflation, employment) that affect all asset classes.

Minara architecture (for developers)

TermWhat it meansSee also
Agent loopThe plan → call tool → observe → decide iteration that drives every turn.Agent Loop
SkillA declarative unit the agent can activate: prompt fragment + tool names + routing metadata. Think of it as a plugin.Skills System
ScenarioA procedural playbook matched by the L0.5 intent classifier. Injects data-gathering steps + analysis framework for a turn.Scenarios
MethodologyA quantitative rule attached to an asset class (e.g. "RSI > 70 → overbought"). Graduates from quarantine via Wilson lower bound.Memory → Learning System
RoleA reasoning-case-memory partition attached to an analysis skill, with declared failureModes. Teaches the LLM from past mistakes.Memory → Role Memory
Memory snapshotA frozen per-session block of recent memories + user profile, injected once at session start.Memory System
L0 / L0.5 / L1 / L3Stages in the skill-routing pipeline. L0 = deterministic pre-filter; L0.5 = scenario classifier; L1 = LLM-driven skill activation; L3 = risk gate.Skills System
MCP (Model Context Protocol)Anthropic's spec for exposing tools to LLMs. Minara uses its own in-house tool registry (NOT MCP) for core tools; MCP is only for external adapters.MCP Servers
Tool tierPermission levels 1–4 (READ_ONLY, CONFIRM_ONCE, ALWAYS_CONFIRM, MANUAL_ONLY) that gate fund-moving operations.Safety & Sandboxing
SandboxThe resolved filesystem root (~/.minara/sandbox/files/) every file tool must operate under. Blocks path-traversal + symlink escape.
FTS5SQLite's full-text search extension. Used to index memories + role cases for BM25 recall.
WALWrite-Ahead Log — a SQLite mode that makes concurrent reads + writes faster and crash-safer.
TTL (Time-To-Live)How long a cached value stays valid. Prompt caches have a 5-minute TTL.
BM25A ranking function for full-text search. Higher score = more relevant to the query.
TF-IDFTerm Frequency × Inverse Document Frequency — a classic text-similarity metric used for dedup of methodology text.
Jaccard similaritySet-overlap similarity: |A ∩ B| / |A ∪ B|. Used for cache-invalidation drift detection + n-gram dedup.
Wilson lower boundStatistical 95%-confidence lower bound of a binomial success rate. A conservative "is this rule actually good?" score that penalizes small samples.Learning System
Quarantine / graduation / demotionStates a methodology passes through. Starts quarantined (unused), graduates after ≥10 uses at ≥55% Wilson LB, demotes if Wilson drops below 0.40 after ≥20 uses.

Cross-reference

On this page