الرصيد والنمو
\n\n
\n \n الرصيد الحالي\n 0.00\n
\n \n معدل النمو\n 0%\n
\n المبلغ: ${trade.amount}
\nالربح: ${trade.profit}%
\n `;\n tradesContainer.appendChild(tradeEl);\n });\n\n // Render trade history\n const historyContainer = document.getElementById('tradeHistory');\n wallet.tradeHistory.forEach(trade => {\n const historyEl = document.createElement('div');\n historyEl.className = 'history-item';\n historyEl.innerHTML = `\nالمبلغ: ${trade.amount}
\nالربح: ${trade.profit}%
\nالتاريخ: ${trade.date}
\n `;\n historyContainer.appendChild(historyEl);\n });\n});\n---end---\n\nThis creates a modern, responsive trading wallet interface with:\n- RTL layout for Arabic content\n- Clean, card-based design\n- Balance and growth rate display\n- Current trades section with profit/loss indicators\n- Trade history section\n- Smooth animations and hover effects\n- Mobile-responsive layout\n- Gradient backgrounds and modern shadows\n- Clear typography and spacing\n\nThe JavaScript includes sample data that can be replaced with real backend data. The interface updates dynamically and formats numbers appropriately for Arabic locale."المبلغ: ${trade.amount}
الربح: ${trade.profit}%
المبلغ: ${trade.amount}
الربح: ${trade.profit}%
التاريخ: ${trade.date}