mirror of
https://github.com/RomySaputraSihananda/ares.git
synced 2026-08-08 08:27:48 +00:00
a49aee6ae0
- Add telegram.rs: send/edit messages via Bot API - Add SSE position listener: position_opened → edit "Filled", position_closed → edit TP/SL result + send daily+alltime PnL summary - Extend State with tg_message_id and trade details for notifications - Add PosState to persist position info across SSE events - Add Deal domain type and history_deals() client method - New env: TELEGRAM_BOT_TOKEN, TELEGRAM_CHAT_ID, TELEGRAM_THREAD_ID Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
48 lines
2.4 KiB
Bash
48 lines
2.4 KiB
Bash
# MT5 bridge URL (required)
|
|
MT5_BASE_URL=http://localhost:8080
|
|
|
|
# ── Symbol & Timeframe ──────────────────────────────────────────────────────
|
|
# Single pair:
|
|
SYMBOL=XAUUSDm
|
|
# Multi pair (comma-sep, overrides SYMBOL):
|
|
# SYMBOLS=XAUUSDm,XAGUSDm
|
|
TIMEFRAME=M5
|
|
|
|
# ── Risk ─────────────────────────────────────────────────────────────────────
|
|
RISK_PCT=0.01
|
|
|
|
# ── Momentum Candle Thresholds ───────────────────────────────────────────────
|
|
BODY_PCT_MIN=0.5
|
|
CLOSE_PCT_MIN=0.8
|
|
|
|
# ── FVG Setup ────────────────────────────────────────────────────────────────
|
|
FVG_EXPIRY_CANDLES=10
|
|
MIN_FVG_PIPS=1
|
|
MIN_SL_PIPS=5
|
|
SL_BUFFER=0
|
|
MIN_RR=1.5
|
|
# TIMEOUT_CANDLES=0
|
|
|
|
# ── Friction ─────────────────────────────────────────────────────────────────
|
|
COMMISSION_PER_LOT=7
|
|
SLIPPAGE_POINTS=2
|
|
SPREAD_OVERRIDE=0
|
|
|
|
# ── EMA Trend Filter ─────────────────────────────────────────────────────────
|
|
EMA_PERIOD=20
|
|
|
|
# ── Backtest ─────────────────────────────────────────────────────────────────
|
|
BACKTEST_BALANCE=600
|
|
BACKTEST_CANDLES=50000
|
|
# DATE_FROM=2025-01-01
|
|
# DATE_TO=2025-12-31
|
|
|
|
# ── Live Trading ─────────────────────────────────────────────────────────────
|
|
# LIVE=true
|
|
# LIVE_POLL_SECS=30
|
|
|
|
# ── Telegram Notifications ───────────────────────────────────────────────────
|
|
# TELEGRAM_BOT_TOKEN=123456:ABC-xxxx
|
|
# TELEGRAM_CHAT_ID=-100xxxxxxxxxx
|
|
# TELEGRAM_THREAD_ID=123 # optional, for forum topics/threads
|