Automate a Strategy in Plain English (No Code)
Educational only — not financial or investment advice.
If Pine Script and webhooks are more than you want to take on, plain-language automation is the shortest path from idea to running strategy. Describe the rule in words; the tool parses it into executable conditions, backtests it, and runs it on a connected broker. Simple conditional logic suits it well. The limits are just as real, and worth knowing before you lean on it.
Key tool: Capitalise.aiSaaS platform· 6 min read
Steps
- Write the rule as a sentence. State the trigger, the action and the risk in plain English, the way you'd explain it to a person. Stick to conditions the tool can evaluate — price levels, indicator thresholds, times of day.
- Backtest before you enable it. Run the built-in backtest over a meaningful stretch of history, then read the results critically: the drawdown, the number of trades, and whether the rule survives periods you didn't tune it on. A rule that only works on one stretch of data is overfit.
- Connect a broker and run on demo. Link a supported broker account in demo mode and let the rule run live-but-fake for a while. Watch that it fires when you expect and sizes positions correctly.
- Go live small, with limits. Only after demo-testing, switch to a small live allocation. Keep a stop on every position and a daily loss cap. Scale up slowly, if at all.
The code
Copy these verbatim and swap in your own values — licence ID, symbol, risk and stop settings. Double-check the symbol name matches your broker exactly, or the order will be rejected.
# The kind of rule a plain-language tool can automate:
If the 1-hour RSI of BTC/USD crosses above 55
and the price is above the 200-period moving average,
then buy 0.05 BTC
with a stop-loss 2% below entry
and a take-profit 4% above entry.
# Simple, conditional, and testable. Complex stateful logic
# (scaling in, correlated hedges, portfolio rules) is where
# plain-language tools start to hit their ceiling.Frequently asked questions
How is this different from the TradingView + bridge setup?
The bridge approach (TradingView → PineConnector → MetaTrader) is more flexible and works with full Pine Script strategies, at the cost of more parts to set up and keep running. Plain-language automation gives up some of that flexibility for radically less setup.
What can't plain-language automation do?
Complex, stateful or multi-instrument strategies are hard to say in sentences. If your idea needs loops, custom indicators or portfolio-level logic, you'll want Pine Script or real code against your broker's API.
Some links in this guide may be affiliate links — see ourdisclosure. Educational content only, not financial advice; verify every setting against each tool's current documentation before trading real money.