Stock markets tumble on the Iran attack
-
Emini S&P June has collapsed as Israel attacks Iran. The low & high for the last session were 5987 – 6051. (To compare the spread to the contract you trade)
-
Emini Nasdaq June has collapsed to 21471. Last session high & low were: 21713- 21977.
-
Emini Dow Jones June has collapsed to 42199. Last session high & low for the last session were: 42586 – 43002.
Emini S&P June futures
-
Emini S&P tested support at 6010/6000 & longs needed stops below 5990, which was tricky as we over ran to 5988 before a 600 tick recovery.
-
Over night we collapsed to strong support at 5950/40 & longs needed stops below 5930.
-
We made a low for the over night session so far at 5927.50 & of course conditions are more volatile as the situation develops.
-
If we continue lower look for a test of support at 5895/85.
-
Longs need stops below 5875.
-
We are likely to meet resistance at 5995/6005 but a break above 6010 suggests the panic is over.
Nasdaq June futures
-
Emini Nasdaq made a low for the day at strong support at 21750/680 yesterday with an impressive recovery from 21713 to 21977.
-
The break lower over night risks a slide to 21440/400 (a low at 21471 as I write) & perhaps as far as a buying opportunity at 21300/250.
-
Resistance at 21700/21800 but a break above 21900 suggests the panic is over.
Emini Dow Jones June futures
-
Emini Dow Jones made a low for the day almost exactly at support at 42660/600 before we shot higher to 43000 for up to 350 ticks profit on the longs.
-
The break lower over night hit my target & buying opportunity at 42350/250 & longs need stops below 42100.
-
Just be aware that a break below 42100 can target 42050/42000, perhaps as far as 41900/850.
-
Longs at at 42350/250 can target 42400/450, perhaps as far as 42550/590 for profit taking.
-
Further gains meet resistance at 42600/700 & shorts need stops above 42850.
The contents of our reports are intended to be understood by professional users who are fully aware of the inherent risks in Forex, Futures, Options, Stocks and Bonds trading. INFORMATION PROVIDED WITHIN THIS MATERIAL SHOULD NOT BE CONSTRUED AS ADVICE AND IS PROVIDED FOR INFORMATION AND EDUCATION PURPOSES ONLY.
Recommended content
Editors’ Picks

EUR/USD slides to 1.1500 as Israel-Iran confict sparks risk aversion
EUR/USD is deep in the red near 1.1500 in the European morning on Friday, extending the pullback from multi-year highs. The pair tumbles as the US Dollar receives support from increased safe-haven demand, sparked by Israel’s attack on Iran’s nuclear facility. Iran has vowed retaliation.

GBP/USD tumbles below 1.3550 amid risk-off sentiment
The GBP/USD pair loses ground to near 1.3530 during the early European session on Friday. The Pound Sterling weakens against US Dollar due to heightened risk aversion, fuelled by geopolitical tensions in the Middle East. Investors now await Iran’s response to Israel’s attacks and the US sentiment data.

US tariffs here to stay, trade deals ‘largely symbolic’
Despite legal challenges to IEEPA tariffs, US trade policy remains firm. Tariffs on steel and aluminium have doubled, and new sectoral tariffs are expected. Trade deals may emerge, but most will be symbolic. Effective tariff rates will stay high throughout 2025.
Forex MAJORS
Cryptocurrencies
Signatures
Best Brokers of 2025
Open Account
${broker.disclosureMessage === ” ? `
` : `
`}
`;
}
function brokerRatingTemplate(broker, idSuffix = “”) {
return `
${broker.accountConditions}
${broker.toolsResources}
${broker.customerServiceSupport}
${broker.tradingSettings}
${broker.trust}
${broker.userExperience}
${broker.reviewUrl ? `
Read Review
` : ”}
${broker.disclosureMessage === ” ? `
` : `
`}
`;
}
// Ensure only one disclosure is open at a time
function setupDisclosureToggle() {
const checkboxes = document.querySelectorAll(‘.disclosure-checkbox’);
checkboxes.forEach(checkbox => {
checkbox.addEventListener(‘change’, function() {
if (this.checked) {
checkboxes.forEach(cb => {
if (cb !== this) cb.checked = false;
});
}
});
});
}
// Call this after rendering broker cards
if (typeof window !== ‘undefined’) {
window.addEventListener(‘DOMContentLoaded’, setupDisclosureToggle);
}
// If broker cards are rendered dynamically, call setupDisclosureToggle() after rendering
// Render both lists
configs.forEach(({ selector, idSuffix }) => {
const brokerList = document.querySelector(selector);
if (!brokerList) return;
const loopIndex = desiredIndex === 0 ? 3 : 4;
const template =
desiredIndex === 0
? brokerRatingTemplate
: (b) => brokerCardTemplate(b, idSuffix);
let htmlBrokerList = “”;
for (let i = 0; i < loopIndex; i++) {
htmlBrokerList += template(brokersData[i], idSuffix);
}
brokerList.innerHTML = htmlBrokerList;
});
})();