VolumeLongVerified example

Volume Spike Confirmation

Nano identifier: VolumeSpikeConfirmation

Volume-confirmed capitulation buy. VOL_RATIO = volume / SMA(volume, 20), provided by the host data feed. A 3x volume spike while RSI is oversold marks a high-conviction reversal candidate.

Nano source

This is the strategy exactly as published. Nano has no import, no file access and no network primitive, so reading or copying this source cannot execute anything.

// Volume-confirmed capitulation buy. VOL_RATIO = volume / SMA(volume, 20),// provided by the host data feed. A 3x volume spike while RSI is oversold// marks a high-conviction reversal candidate.strategy VolumeSpikeConfirmation {    every 15m {        if VOL_RATIO(20) > 3 and RSI(14) < 30 {            buy(BTCUSD, 0.85)        }    }}

Compiled IR

Nano compiles to a pinned intermediate representation. This is the artifact a runtime would actually load — inspectable before anything runs, and byte-diffable against the published source.

{  "type": "Strategy",  "nanoIrVersion": "0.1.0",  "name": "VolumeSpikeConfirmation",  "effects": [    "intent.emit",    "log.append"  ],  "nodes": [    {      "type": "Schedule",      "interval": "15m"    },    {      "type": "Condition",      "signal": "VOL_RATIO",      "operator": ">",      "value": 3    },    {      "type": "Condition",      "signal": "RSI",      "operator": "<",      "value": 30    },    {      "type": "Intent",      "action": "BUY",      "asset": "BTCUSD",      "confidence": 0.85    }  ]}

What it proposes

On a 15 minutes cadence, when VOL_RATIO > 3 and RSI < 30, it emits buy intent for BTCUSD.

An intent is a proposal, not an order. A separate risk gate — outside the language, and outside this library — decides whether anything is acted on.

Risk disclosure

This strategy is published as an educational, verified example. It compiles to the IR shown above and replays deterministically. It has not been backtested against market data, forward-tested, paper-traded, or traded live by Aether, and no performance statistics are published because none have been produced.

Nothing on this page is financial advice, an offer, or a recommendation to trade. Trading carries risk of loss. Any decision to run logic derived from this strategy — and the risk gate that governs it — is entirely your own responsibility.