EW Nation

About Us

We are a small team of seasoned professionals with over a decade of experience in financial markets. We see the markets as a powerful yet often irrational teacher, and our passion for understanding their movements dates back to the Financial Crisis. The Elliott Wave principle has been a key tool in our forecasting, complemented by fundamental analysis when valuable. Despite being a young company, we’ve already helped thousands of traders and investors think outside the box and refine their market strategies..

Meet the Team

Ikem Iheme / co-founder and analyst
Mo Khalid / co-founder / product designer
document.addEventListener('DOMContentLoaded', function() { const toggle = document.getElementById('columnToggle'); const columns = document.querySelectorAll('[data-hide-column="true"]'); if (toggle && columns.length > 0) { // Load saved preference const isHidden = localStorage.getItem('columnHidden') === 'true'; toggle.checked = isHidden; updateColumnVisibility(isHidden); // Add toggle event toggle.addEventListener('change', function() { const shouldHide = this.checked; localStorage.setItem('columnHidden', shouldHide); updateColumnVisibility(shouldHide); }); function updateColumnVisibility(hide) { columns.forEach(column => { column.style.display = hide ? 'none' : ''; column.style.opacity = hide ? '0' : '1'; column.style.transition = 'opacity 0.3s ease'; }); // Update label text const label = document.querySelector('.toggle-label'); if (label) { label.textContent = hide ? 'Show Sidebar' : 'Hide Sidebar'; } } } });