// 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
8
// ACTIVE SYSTEMS
47
// COMMUNITY FORKS
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 · XAUUSD · MT5
Built specifically for gold trading on MetaTrader 5. Session-aware, ATR-filtered, and structured around real XAUUSD market behaviour. The flagship family.
OMEGA GS
XAUUSD · 5M · EMA Cross + ATR
LIVE
OMEGA SCALPER
XAUUSD · 1M · Fast momentum
BETA
OMEGA SWING
XAUUSD · 4H · Structure based
IN DEV
ACCESS OMEGA FAMILY →
NOVA
// CRYPTO · BYBIT · PERPETUALS
Designed for crypto perpetual futures on Bybit. Isolated margin, multi-asset, built to handle the speed and volatility of crypto markets without blowing up.
NOVA BTC
BTCUSDT · 1H · Bybit Perp
LIVE
NOVA ETH
ETHUSDT · 1H · Bybit Perp
BETA
NOVA SOL
SOLUSDT · 30M · Bybit Perp
BETA
ACCESS NOVA FAMILY →
ALPHA
// SIGNAL EXECUTOR · MT5 + BYBIT
No strategy of its own — pure execution engine. Feed it a signal, it handles entry, SL, TP, position sizing and trailing stops automatically. Your discipline, automated.
ALPHA EXECUTOR
Any pair · Signal driven · MT5
LIVE
ALPHA CRYPTO
Any pair · Signal driven · Bybit
BETA
ALPHA TELEGRAM
Telegram signal → auto execution
IN DEV
ACCESS ALPHA FAMILY →
COMMUNITY BUILT SYSTEMS
ATR RIDER
// by USR_041 · fork of OMEGA GS
LIVE
Modified OMEGA GS with ATR-based dynamic SL instead of fixed pips. Improved average R by 0.4 across 3 months of testing. Full diff documented.
↑ 89% approval· 34 forks· XAUUSD
SESSION SCALP
// by MarketKing · original build
BETA
Ultra-tight 1M scalper for London open first 30 minutes only. High frequency, small targets. Not for everyone but consistently profitable in the right conditions.
↑ 76% approval· 21 forks· XAUUSD
NOVA MULTI
// by AlgoX · fork of NOVA BTC
BETA
Multi-asset NOVA fork running BTC, ETH and SOL simultaneously with shared risk budget. Auto-reduces position size when correlation is high.
↑ 81% approval· 18 forks· CRYPTO
Community bots require Core membership to access. Publish your own bot and earn +500 Core Credits. JOIN CORE →
IN DEVELOPMENT
OMEGA FOREX
OMEGA logic adapted for major forex pairs. EURUSD, GBPUSD. Session-based with news filter.
// ETA: Q3 2026
ALPHA TELEGRAM
Full Telegram signal to live trade pipeline. Receive signal in channel → bot executes automatically on MT5 or Bybit.
// ETA: Q2 2026
NOVA STOCKS
Stock CFD system for US market open. Momentum based, earnings calendar aware, sector rotation logic.
// ETA: Q4 2026

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?

THE CODE IS
WAITING.

// Full source code. Real documentation. Community support.
// Everything you need to run, modify, and improve these systems.

JOIN CORE — ACCESS ALL SYSTEMS → LEARN THE BASICS FIRST