# Reddit — value-led posts (NOT promotional)

> Reddit ban-hammer = self-promotion. Эти посты — value-led: реальный инсайт + ссылка в комментарии, не в заголовке. Отдельный пост на каждый сабреддит, не cross-post (rule).

---

## r/algotrading — пост 1

**Title:** I tracked the 3 patterns where 90% of self-taught algo traders fail. None of them are "bad strategy".

**Body:**
```
Two years building a Binance bot from scratch as a self-taught dev. Here's what I learned watching 50+ peers blow up their accounts.

It's never the strategy. It's always one of these three:

**1. Overfitting on a single backtest**
You tweak EMA period from 26 to 27 → win rate jumps from 52% to 58% on 2023 BTC data → you ship it → next month it loses money. The 27 didn't beat 26 in any meaningful way; it just matched a specific 2023 noise pattern.

Tell-tale: if your backtest shows >65% win rate and Sharpe >2 — you overfit. Real crypto strategies sit at 40-55% WR / Sharpe 0.8-1.5.

**2. No drawdown discipline**
Bot is signal generator, dev never wired in:
- max % of capital per trade (default to 0.5–2%)
- daily loss limit (when bot stops until tomorrow)
- max concurrent positions
- circuit-breaker after N losses in a row

Without these four, you're not algo trading — you're roulette with extra steps.

**3. Iteration with no experiment isolation**
Bot loses 3 days → dev panics → changes 5 parameters at once → bot wins 1 day → dev euphoric → adds 3 more indicators → strategy becomes spaghetti.

The fix: 1 hypothesis → 1 backtest → 1 log line → 1 small change. Run 50–100 trades between changes. This isn't "slow", this is the only way to separate signal from noise.

—

I'm running a free 5-day challenge starting May 12 where we walk through these in detail and build a paper-trading bot with an AI co-pilot (no hand-coding). Link in comments if interested. Otherwise — would love to hear your top failure pattern that didn't make my list.
```

**First comment (post-it yourself):**
```
Link to the challenge: https://nexus-bot.pro/en/challenge/

Free, no upsell mid-challenge, only one mention of the paid version on Day 5.
```

---

## r/CryptoCurrency — пост 2

**Title:** Honest answer: how a Python beginner can build their first paper-trading bot in 5 evenings (no copy-paste, no $5K courses)

**Body:**
```
Tired of "follow my signals" channels? Here's the actual minimum path from zero to a running paper-trading bot.

You need three things, in this order:
1. **An archetype** (trend / mean-reversion / momentum / pairs) — picked by your capital and time profile, not aesthetics
2. **A one-sentence statement** of what your bot does — entry, exit, risk, stop, all on paper before you write any code
3. **An AI co-pilot** to actually write the code — Claude Code, Cursor, Copilot, any of them — your job is to brief it precisely and review its output

That's it. No need to write Python by hand in 2026. The skill is briefing AI on what to build and catching its mistakes.

Common mistake at step 1: people pick "high-frequency momentum" because it sounds exciting, then realize they have $500 capital and fees eat everything. Your archetype is determined by capital + time + temperament, not "what looks cool".

Common mistake at step 2: jumping to code with vague rules. If you can't say "my bot does X using Y archetype on Z timeframe with W risk per trade" in one sentence, your bot doesn't work yet — even if it has 1000 lines of Python.

Common mistake at step 3: trusting the AI output without reviewing for look-ahead bias. AI loves to write `if df.close[i+1] > df.close[i]` which secretly peeks at the future. Always review.

Free 5-day challenge starts May 12 if you want to walk through this with concrete examples and homework. Link in comments.
```

**First comment:**
```
Challenge link: https://nexus-bot.pro/en/challenge/

5 videos already recorded, day 1 starts May 12 at 09:00 UTC.
```

---

## r/Python — пост 3 (если нет ban на trading контент)

**Title:** What "boring" Python skills actually matter for production trading bots — from 2 years of running one

**Body:**
```
Saw a thread on what advanced Python skills matter for fintech. Almost none of the popular answers (asyncio, Cython, multi-threading) actually move the needle for retail trading bots. Here's what does:

**1. `decimal.Decimal` over `float`**
First time I lost money to a float rounding bug — 0.1 + 0.2 == 0.30000000000000004 — I switched immediately. Position sizes, fees, cumulative PnL — all `Decimal`. Yes it's slower. Yes it's worth it.

**2. SQLite > PostgreSQL for single-process bots**
PostgreSQL is overkill until you have multiple bots writing concurrently. SQLite + WAL mode handles 10K trades/day comfortably and survives unclean shutdowns better than people think.

**3. `subprocess.run(check=True)` over silent failures**
Every shell command in your bot pipeline should `check=True`. Fail loud, fail early. Silent shell failures masking missing API keys cost me a week of "why is the bot not trading".

**4. Logging with rotation, not print**
`logging.handlers.RotatingFileHandler` from day one. Print statements die in `systemd` redirects. Trust me.

**5. `dataclass(frozen=True)` for domain objects**
Position, Order, Trade — all frozen dataclasses. Once it's created it doesn't mutate. Saved me from at least three race-condition bugs.

What I don't use that everyone says I should: pandas (overkill for streaming), numpy beyond the basics (slow startup), async (no benefit for a single bot reading WebSocket). Boring tools, boring code, predictable outcomes.

Running a free 5-day challenge in May where we build a paper-trading bot using these patterns + an AI co-pilot. Link in comments if interested.
```

**First comment:**
```
Challenge: https://nexus-bot.pro/en/challenge/ — free, starts May 12.
```

---

## Anti-ban правила

- **Не cross-post одинаковый текст** — каждый сабреддит свой угол
- **Ссылка в комментарии**, не в title и не в первом параграфе
- **Karma >= 100** перед постингом (текущая ~1, надо прогреть аккаунт 7-10 дней или попросить кого-то с прогретым)
- **Отвечать на комментарии в первый час** — Reddit boost
- **Не использовать слова "free course", "make money"** в title — auto-flag модерации
