Neural Trader: what are you building? (patterns, plugins, and the MT5 EA reference example) #1722
ruvnet
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Kicking off a discussion thread for everyone using — or curious about — the
ruflo-neural-traderplugin and the broader algorithmic-trading surface in ruflo. Drop your strategies, questions, war stories, and feature requests here.What
ruflo-neural-traderactually isFor folks new to it:
ruflo-neural-traderis a thin-but-real bridge between Claude Code and theneural-tradernpm package. It gives you skill-level commands for the full strategy lifecycle:trader-traintrader-signaltrader-backtesttrader-regimetrader-risktrader-portfolioliquidity-sweep(new)Underneath, every run is wired into ruflo's memory + intelligence stack:
hooks post-taskand adapts pattern weights over timeTranslation: every back-test you run makes the next one smarter, not just slower.
Reference example: an MT5 EA from issue #1720
Issue #1720 asked for an MT5 Expert Advisor that trades hammer / shooting-star liquidity sweeps at fixed 1:1 or 1:2 RR. We built it as a complete worked example — same strategy implemented twice (MQL5 for native MT5 execution, JavaScript for back-testing) with optional ruflo integration on top.
v3/docs/examples/mt5-hammer-star-sweep/Highlights worth lifting for your own strategies:
bridge/strategy.mjs. The MQL5 EA mirrors the same rules. You back-test in Node, deploy in MT5, and the rules can't drift apart.--ruflo --symbol EURUSDto the back-tester and it'll: lazily runmemory init, look up prior back-tests for that symbol, store the new result, record a SONA trajectory verdict. Without the flag, it's a pure-JS strategy with zero deps.neural-trader --signal scanand blocks longs in bear regimes / shorts in bull regimes. Cheap pattern + smart filter beats either alone.npm testis the first line of the README for a reason.Discussion prompts
If you've got time, pick any of these to chime in on:
Drop links to your own gists / repos / write-ups. The goal is to build a shared playbook so people aren't starting from a blank chart every time.
Contributing back
If you ship a strategy you're happy with, the cleanest way to share it is:
v3/docs/examples/<your-strategy>/Or if it's smaller scope, just paste the gist link in a reply.
—
Pinging anyone who's been working on the trading side: feel free to @ in folks I missed.
Beta Was this translation helpful? Give feedback.
All reactions