M
MicroEdge_lab

The Solana post-pump retrace, explained

A focused breakdown of the post-pump retrace strategy, what it triggers on, and where the gates apply.

what is the post-pump retrace?

The post-pump retrace is one of the strategies the MicroEdge scanner runs against every observation in real time. Different markets and conditions favor different strategies — running all of them in parallel surfaces opportunities that any single strategy would miss.

when does it fire?

The post-pump retrace requires multiple supporting signals to align. False positives are expensive; missing real opportunities is forgivable. The gate is set such that ≥70% of raw firings get rejected before reaching subscribers.

code-level breakdown

// observation → score → reject → classify → alert
const score = postpumpretraceScore(obs, baseline);
const rej = evaluateRejections({ obs, ageMs, baselinePriceChange1m, ... });
if (isHardRejected(rej)) return null;
if (!costDominancePasses(strategy, score, size)) return null;
if (!payoffViabilityPasses(strategy, tp, sl)) return null;
return { classification: classify(score), suggestedSize: sizeFor(...) };

common edge cases

live signal feed

The last 24 hours of fired alerts (across all strategies) is public at /signals.html. post-pump retrace alerts will be tagged by strategy in that feed.

related guides

get real-time alerts → microedge pro