Posada runs six autonomous strategies simultaneously. Each one watches price history and generates signals — BUY, SELL, ADD, or SELL_HALF. The bot picks the best strategy for each token based on current market conditions. Exit signals are evaluated every cycle regardless of which strategies are toggled on or off — positions are always managed.
| Strategy | Market Type | Risk Level | Hold Time |
|---|---|---|---|
| LWMR | Calm, ranging | Low | Hours to days |
| BWR | Breakout / trending | Medium | Hours |
| VBR | Volatile, choppy | Medium-High | Hours to days |
| LRM | Trending, momentum | Medium | Minutes to hours |
| RRA | Any (relative) | Low-Medium | Hours to days |
| CPR | Bear / falling | Medium | Hours to days |
LWMR calculates a 20-period moving average and standard deviation of recent prices. When the price drops significantly below the mean (at least 1 standard deviation or 2%, whichever is greater), it triggers a buy — the idea being that prices tend to revert back to their average.
Calm, low-volatility markets Works best on tokens that trade in a predictable range. Steady grinders like MIN, INDY, or stablecoin-adjacent pairs.
BWR looks at the last 30 price candles to identify resistance levels. When price breaks above resistance and then pulls back slightly (the "retest"), it buys — confirming the breakout is real, not a fakeout. This is a classic technical analysis pattern used by professional traders.
Trending markets with strong momentum Works on tokens making new highs — NIGHT during rally phases, SNEK during hype cycles, or any token breaking out of a consolidation range.
VBR uses Bollinger Bands — a channel drawn 2 standard deviations above and below a 20-period moving average. When price drops below the lower band, it's statistically oversold. The bot buys and waits for price to snap back toward the middle or upper band.
Volatile, choppy markets Thrives when tokens are swinging wildly — HOSKY during meme cycles, or any token with large daily swings. The wider the bands, the bigger the opportunity.
LRM is a pure momentum strategy. It measures how much a token's price has moved over the last 3 and 5 candles. When both short-term and medium-term momentum are positive and strong enough, it buys — riding the wave of buying pressure. When momentum reverses, it exits quickly.
Clearly trending markets The go-to strategy when a token is on a sustained run. Works on tokens with strong catalysts — project announcements, exchange listings, or market-wide rallies. Most active of all five strategies.
RRA doesn't just look at whether a token is going up — it asks whether it's going up faster than the rest of the market. It calculates a rotation score by weighting short-term (3-period) and long-term (10-period) momentum. Tokens with high relative strength get bought; those losing strength get sold.
Portfolio rotation across multiple tokens Excels when different tokens take turns leading the market. Rather than picking one winner, RRA systematically rotates into whichever token has the strongest relative momentum.
CPR is designed specifically for falling and bear markets, where the other strategies tend to lose money. Cardano DEXs have roughly 3% round-trip friction (1% buy slippage + 2% sell slippage), so CPR only enters at extreme oversold levels where the expected bounce is large enough to clear that cost. It requires four independent confirmations before buying — this makes it trade rarely, but with higher conviction.
Bear and falling markets The only strategy designed to profit when most tokens are trending down. Targets sharp, panicked sell-offs that often produce a relief bounce. Most effective on tokens with enough volume to produce genuine capitulation events — SNEK, NIGHT, WMTX during broad market corrections.
Every poll cycle (default 60 seconds), Posada evaluates all enabled strategies against each watched token. The strategies are checked in priority order: LWMR, BWR, VBR, LRM, RRA, CPR. The first strategy to produce a BUY signal for a given token wins.
Each position remembers which strategy opened it. Only that strategy manages the exit — take-profit, stop-loss, ADD, and SELL_HALF signals all come from the same strategy that entered. This prevents conflicting signals from different strategies fighting over the same position.
Posada evaluates exit signals on every open position, every cycle, unconditionally. This is a core safety principle: a bot that can buy but can't sell is useless.
The exit engine runs as a separate evaluation pass before the entry/strategy routing. It scans all open positions, looks up which strategy opened each one, loads your configured parameters for that strategy, and calls that strategy's signal function. If the signal says SELL or SELL_HALF, the trade executes immediately. This happens regardless of which strategies are currently enabled in the dashboard.