import dotenv from 'dotenv';
dotenv.config();
import { sendTelegramMessage } from './src/data/telegramNotifier.js';
const mockTradeMsg = `🚨 NEW AUTOPILOT TRADE EXECUTED\n\n` +
`Setup Quality: Grade B Setup\n` +
`Symbol: GBPUSD\n` +
`Direction: LONG\n` +
`Lot Size: 0.20 lots\n` +
`Entry Price: $1.34797\n` +
`Stop Loss (SL): $1.34543\n` +
`Take Profit 1 (TP1): $1.35306\n` +
`Take Profit 2 (TP2): $1.35560\n\n` +
`📊 Risk Configuration:\n` +
`• Expected Risk: $50.87 (FundingPips Compliant)\n` +
`• Stop Loss Distance: 0.00254 price units\n\n` +
`💡 Trade Confluences Scanned:\n` +
`• Price at S/D Zone\n` +
`• Trend aligned (bullish)\n` +
`• Price near EMA21 support`;
async function run() {
console.log('Sending mock trade entry message...');
await sendTelegramMessage(mockTradeMsg);
console.log('Done.');
}
run();