mirror of
https://github.com/RomySaputraSihananda/ares.git
synced 2026-08-05 23:17: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>
9 lines
199 B
Rust
9 lines
199 B
Rust
mod client;
|
|
mod error;
|
|
mod types;
|
|
|
|
pub use client::Mt5Client;
|
|
pub use error::Mt5Error;
|
|
pub use domain::Deal;
|
|
pub use types::{HealthStatus, OrderCheckResult, PendingOrder, TradeRequest, TradeResult};
|