What is TradeSmithy?
+
TradeSmithy is a visual, no-code builder for MetaTrader 5 Expert Advisors: you assemble a trading strategy as a node graph on a canvas, refine it in plain English with an AI assistant, export it as ready-to-compile MQL5 source code, and sell it to other traders in a built-in marketplace — without leaving the platform.
Do I need to know MQL5 or any programming to build an Expert Advisor?
+
No. You build the strategy by dragging nodes onto a canvas and connecting them, and the platform generates the MQL5 source code for you. Reading code helps if you want to check the output before compiling it, but nothing in the build process requires you to write any.
How do I turn a trading idea into a MetaTrader 5 Expert Advisor?
+
Create a project, drop an event node such as OnTick onto the canvas, add the indicators your strategy uses, wire them into an if-condition, connect that to a buy or sell order node, then export the graph as MQL5 and compile it in MetaEditor. A working first strategy takes about fifteen minutes from a template.
Can the AI assistant modify my strategy for me?
+
Yes. The assistant edits the node graph itself rather than just describing changes — ask it to add an ATR filter or to route a second condition into an existing order and it will add the nodes and the connections. Its output is normalised, grown to fit dynamic inputs, validated and synchronised before it is applied, so a malformed reply cannot corrupt your canvas. The assistant is included on Pro and Premium.
Which MetaTrader 5 indicators are supported?
+
16 indicators ship built in: Moving Average, Relative Strength Index, MACD, Bollinger Bands, Stochastic Oscillator, Average True Range, Commodity Channel Index, Average Directional Index, Williams %R, Momentum, Moving Average of Oscillator, Relative Vigor Index, Parabolic SAR, Standard Deviation, DeMarker, Envelopes. Each one is mapped to its real MQL5 function with typed parameters and named output lines, so a MACD node exposes its main, signal and histogram outputs separately.
Is backtesting available yet?
+
Backtest configuration is available on Pro and Premium — you can set the symbol, timeframe, date range, spread and starting balance from inside the builder. The execution engine is not connected yet, so the Run button is disabled rather than showing results that were never computed. It is the next thing being built.
Is parameter optimization available yet?
+
Not yet — it is in development and will run inside the same builder. The groundwork is already in place: every node parameter is a typed input with a declared minimum, maximum and default, which is exactly what an optimizer needs to sweep. It will not be sold as a separate product.
Can I sell the strategies I build?
+
Yes, on Pro and Premium. Publish a strategy to the community marketplace at a price you set; when someone buys it, the money lands in your wallet in the same transaction as the sale. Commission is 15% on Pro and 5% on Premium, taken from your live plan at the moment of sale.
If I list a strategy, can people copy it without paying?
+
No. The public listing carries only the shop-window details — name, description, price, seller and node counts. The strategy graph itself is stored in a separate location that every client is denied access to, and it is released only by the server, only to a buyer, at the moment the payment settles.
How do I add funds, and which cryptocurrencies are accepted?
+
Wallet top-ups are paid in crypto through a hosted checkout. USDT and USDC are accepted across Tron, BNB Smart Chain, Polygon, Solana, TON, Arbitrum, Optimism and Base, plus BUSD, TRX, TON, BNB and SOL. A balance is only ever credited by a verified payment notification from the provider — returning to the site never credits anything by itself.
How much does TradeSmithy cost?
+
There are three plans, each billed per 30 days from your wallet balance: Free at $0, Pro at $19, Premium at $49. Free includes 3 projects and 1 MQL5 export per period; Pro adds the AI assistant, backtesting and marketplace selling; Premium adds unlimited projects and the lowest commission.
What happens to my projects if I downgrade or my plan lapses?
+
Nothing is locked, hidden or deleted. The project limit is checked only when you create a project, so a lapsed Pro account keeps full read and write access to all 25 of its projects and simply cannot create the 26th until it upgrades or removes one. There is no read-only project state.
Does the generated code work on MetaTrader 4?
+
No. The output is MQL5, targeting MetaTrader 5 Expert Advisors. MQL4 and MetaTrader 4 are not supported.
Can I run TradeSmithy on my own server?
+
Yes. The application ships with a Docker setup and a documented self-hosting path, so you can run the whole stack on your own infrastructure with your own API keys.