HOME ABOUT KNOWLEDGE SYSTEMS COMMUNITY PRICING CONTACT JOIN WAITLIST →
// THE BOT ARSENAL

BUILD.
TEST.
EXECUTE.

Three system families. Real source code. Real results — not backtested fantasy. Every bot here has been run live, debugged in real market conditions, and documented honestly. Take them, break them, make them yours.

3
// BOT FAMILIES
LIVE
// OMEGA STATUS
LIVE
// NOVA STATUS
100%
// OPEN SOURCE TO CORE

LOGIC YOU CAN
UNDERSTAND.

Every system at RawCore is built on clear, readable logic. No black boxes. No "trust the algorithm." You get the full source code, line-by-line comments, and an explanation of why each decision was made.

Whether you're a coder who wants to modify the strategy, or a trader who just wants to understand what's running on your account — you'll always know exactly what your bot is doing and why.

All MT5 bots are built in Python via MetaTrader5 API. Crypto bots run on Bybit via CCXT. Full setup guides included.

omega_gold_logic.py
# OMEGA GOLD — core entry logic
def check_entry(symbol, tf):
# 1. Check session filter
if not is_london_or_ny(): return
# 2. EMA9 crosses above EMA21
ema_cross = ema_cross_up(9, 21)
# 3. ATR confirms volatility
atr_ok = atr(14) > 0.8
# 4. Execute with structured SL/TP
if ema_cross and atr_ok:
place_order(
sl="structure_low",
tp1=1.5R, tp2=2.5R
)
SYSTEM FAMILIES
OMEGA
// GOLD SCALPING BOT · XAUUSD · MT5
Gold scalping bot built for MetaTrader 5. Trades XAUUSD during London and NY sessions using EMA cross signals, ATR volatility filter, and a 4-leg take profit system. Built and tested live on Tradequo.
OMEGA
XAUUSD · 5M · EMA9×EMA21 + ATR · 40 pip SL · 4-leg TP
LIVE
ACCESS OMEGA →
NOVA
// CRYPTO TRADING BOT · BYBIT · PERPETUALS
Crypto trading bot running on Bybit perpetuals. Multi-timeframe confluence strategy — 4H bias, 1H S&D zones and FVGs, 15M rejection entry. Correlation guard prevents doubling up on correlated pairs.
NOVA — BTC
BTCUSDT · Bybit Perp · 4H/1H/15M confluence
LIVE
NOVA — ETH
ETHUSDT · Bybit Perp · 4H/1H/15M confluence
LIVE
NOVA — SOL
SOLUSDT · Bybit Perp · 4H/1H/15M confluence
LIVE
ACCESS NOVA →
ALPHA
// SIGNAL EXECUTOR · MT5
No strategy of its own — pure execution engine. Reads signals from Telegram, opens the trade on MT5 with correct SL, TP and position sizing. Built for traders who want clean, automatic execution without ever missing an entry.
ALPHA
MT5 · Telegram signal → auto execution · any pair
LIVE
ACCESS ALPHA →
WHAT HAPPENS AFTER YOU JOIN

YOU GET THE BOT.
WE GET YOU RUNNING.

// STEP 01
FULL SETUP GUIDE
A complete walkthrough from zero to live bot — no assumed knowledge. If you've never touched Python or MT5, that's fine. We cover it all.
  • Python installation + all required packages
  • MetaTrader 5 setup and broker connection
  • Bot configuration — risk, sessions, pairs
  • Running your first live trade
// STEP 02
TELEGRAM INTEGRATION
Your bot talks to you through Telegram. Get live trade alerts, account updates, and the ability to tweak settings without touching a single line of code.
  • Create your own private Telegram bot in minutes
  • Real-time alerts — entries, exits, SL hits
  • Remote commands — pause, resume, adjust risk
  • Daily P&L summaries sent automatically
// STEP 03
ONGOING SUPPORT
Bots throw errors. Markets change. Strategies need tweaking. You won't be left figuring it out alone — the community and documentation have you covered.
  • Error code guide — what broke and why
  • State file diagnostics — see exactly what the bot sees
  • Strategy tweak documentation as we improve
  • Private Core community for live Q&A
COMMUNITY SYSTEMS
// COMING WITH THE COMMUNITY
BRING YOUR IDEA.

We're just getting started. As the Core community grows, members will be able to fork existing bots, submit original systems, and earn credits for contributions that help other traders.

You don't need to be a developer. You need a clear strategy idea, honest test results, and the humility to accept feedback. The community does the rest.

+50 pts
Fork a bot and document your changes
+200 pts
Submit an original bot for review
+500 pts
Bot accepted into Core marketplace
JOIN WAITLIST TO CONTRIBUTE →
IN DEVELOPMENT
OMEGA FOREX
OMEGA logic adapted for major forex pairs. EURUSD, GBPUSD. Session-based with news filter.
// ETA: TBD
ALPHA — TELEGRAM
Full Telegram signal to live trade pipeline. Receive signal in channel → ALPHA executes automatically on MT5. No manual entry needed.
// ETA: IN PROGRESS
NOVA STOCKS
Stock CFD system for US market open. Momentum based, earnings calendar aware, sector rotation logic.
// ETA: TBD

GOT A SYSTEM
IDEA? BUILD IT.

Every bot in the community marketplace started as one person's idea. You bring the strategy concept — the community helps refine the logic, test it, and improve it. If it makes the cut, it gets published for all Core members.

You don't need to be an expert coder. You need a clear idea, a willingness to test honestly, and the humility to accept feedback. The community does the rest.

Fork an existing system and share improvementsDocument your changes properly
+50
Submit an original bot for reviewFull source code + strategy explanation
+200
Bot accepted into Core marketplaceAvailable to all paying members
+500
Bot reaches 50 community forksTop tier contributor recognition
+1000
// READY TO RUN REAL SYSTEMS?

BE FIRST
IN.

// Full source code. Real documentation. Step-by-step setup.
// Join the waitlist — early members get first access when we open the doors.

GET EARLY ACCESS → LEARN THE BASICS FIRST