my EA bleeds during news, should it just stop trading around red folder events
-
-
the troll names a real danger, filter creep is how people overfit by exclusion. the discipline is: only add a filter for a mechanism you can explain, not just a losing period you noticed. 'spread blows out during news so my entries are bad' is a mechanism. 'it loses on tuesdays' usually isnt. that distinction keeps the filter honest.
-
use a well-known economic calendar with a documented data feed rather than scraping a random site. and crucially, test that your filter actually blocks trades around a known past event in the strategy tester before trusting it live. a filter that silently doesnt fire is worse than no filter because you think youre protected.
-
the 'verify it actually fires' point is underrated. ive seen news filters that looked configured but the event-time parsing was off by the broker server offset, so it paused at the wrong moment entirely. always confirm against a real historical event.
-
for what its worth, after adding a clean news filter my EAs equity curve got noticeably smoother without hurting total return much. the news trades were nearly a wash on average but added huge variance. cutting variance for similar return is a good trade in itself.
-
smoother equity curve with similar return is also exactly what overfitting produces in-sample. forward test it on events it has never seen before you celebrate.
-
fair, and easy to settle: keep the filter, run the EA forward on demo through the next month of news events, and compare filtered live behaviour to what the unfiltered version would have done. if the filter still helps on unseen events, it was a mechanism, not a fit. let the forward data decide.
Hello! It looks like you're interested in this conversation, but you don't have an account yet.
Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.
With your input, this post could be even better 💗
Register Login
the 'mechanism vs noticed losing period' line is going straight in my journal.