Prop-firm-safe automation

A practical guide to running automated strategies inside prop firm rules — what TICPOZ helps with, and what is still on you.

Last updated · 2026-05-13

Prop firm trading is a different game from personal-capital trading. The capital is not yours. The rules are the firm's, written in the contract you accepted. Breach a rule and the account closes, often instantly and without recourse. Run an automated strategy inside those rules and you compound a second risk on top: your bot might breach a rule while you sleep.

This post is a practical guide to running automated strategies inside common prop firm rules, what TICPOZ does to help you stay inside them, and — importantly — what we cannot do and where the residual risk sits.

The standard rule families

Every prop firm publishes its own rule set, but the rules cluster into five families. Understanding them helps you understand what a "rule plugin" inside TICPOZ actually does.

1. Daily drawdown

A daily drawdown rule says: from the equity at the start of the trading day, you cannot lose more than X percent before the daily reset. If you do, the account is breached. Some firms reset at midnight UTC, some at 5pm New York, some at the broker's server midnight. The number is typically 4 to 5 percent. The reset time is critical, because a trade opened before reset and closed after reset is calculated against the post-reset baseline.

2. Maximum drawdown

Maximum drawdown is the total loss-from-peak ceiling, typically 8 to 10 percent. Some firms compute it from initial balance (static), some from running high-water mark (trailing). Trailing maximum drawdowns can lock in gains, which sounds nice until you realise that a trailing drawdown that has tightened to within 2 percent of current equity gives you very little room to manoeuvre.

3. News restrictions

Many firms forbid taking new positions within a window — usually 2 to 5 minutes — around high-impact news events. Some firms apply the rule per-instrument; some apply it globally. Some forbid holding through news; some only forbid entering. Some interpret "news" as the ForexFactory red folder; some maintain their own list.

4. Consistency

Consistency rules cap the share of your total profit that can come from a single day or a single trade. A 30 percent consistency rule says no single day can account for more than 30 percent of total profit. Strategies that occasionally take huge wins on news spikes breach this rule frequently.

5. Minimum trading days

Most challenges require you to trade on a minimum number of distinct days, regardless of whether you hit the profit target earlier. This prevents a single lucky day from passing a challenge.

What the rule plugin does

When you connect a prop firm account, TICPOZ asks which firm and which challenge tier. We load a per-firm rule plugin that knows the specific numbers for that combination. The plugin runs as a pre-trade gate and a continuous monitor.

The pre-trade gate

Before any order is sent to the broker, the gate evaluates:

  • The hypothetical loss if the trade is stopped out. Combined with current daily drawdown, would the worst-case fill breach the daily limit?
  • The hypothetical loss combined with current max-drawdown headroom. Would it breach the overall limit?
  • The current time relative to the upcoming news calendar. Is the trade entering inside a restricted window?
  • The contribution this trade could make to single-day profit. If it could push today's profit past the consistency threshold, the gate flags it for the user (or skips it, depending on the user's chosen behaviour).

If the gate refuses an order, the strategy logs the refusal and continues monitoring. The strategy author decides in advance what "refused order" means — skip the trade, queue it for after the restricted window, or stop the strategy entirely. Whichever behaviour was configured at deploy time.

The continuous monitor

Separately, a kill-switch runs in a tight loop. If equity drops below a configurable buffer above the daily-drawdown floor, the kill-switch closes all open positions and halts further entries for the rest of the trading day. Buffer is configurable because different traders have different risk tolerances; we recommend a buffer of at least 0.5 percent above the firm's drawdown floor.

The kill-switch is not a guarantee
The kill-switch closes positions at market when the trigger fires. The fill it gets is whatever the broker offers at that instant. In normal conditions the slippage is small and the kill-switch protects you. In a flash event — a 3000-pip XAUUSD spike during a thin Asia session, a CHF unpeg, a SNB-style event — the price can move past the kill-switch's threshold before the market order fills, and the trader can still breach. A kill-switch reduces tail risk; it does not eliminate it.

The compatibility list

We currently ship rule plugins compatible with the following firms. We use the phrase "compatible with" deliberately. We are not a partner of any of these firms. We are not endorsed by them. We do not pay them, they do not pay us, and our plugin behaviour is built from publicly published rule documents that we re-read every quarter.

  • FTMO — standard challenge, swing, aggressive.
  • FunderPro — standard and accelerated.
  • FundedNext — express, evaluation, stellar.
  • The Funded Trader — standard, rapid, royal.
  • Several smaller firms — listed inside the broker connection dialog.

If a firm changes its rules, we typically have an updated plugin within 72 hours. We publish the plugin version on your strategy panel; you can see exactly which rule version the gate is evaluating against.

The myth-buster: "TICPOZ will block me from violating a rule"

This is the most important section of the post. It is also the section that some readers will want to skim. Please do not skim.

TICPOZ does not block you from violating prop firm rules. TICPOZ runs gates and a kill-switch that are designed to help you stay inside the rules under normal market conditions. There are three reasons why "help you stay inside" is not the same as "guarantee you stay inside":

First, the gate evaluates worst-case fills using current market conditions. If the market gaps, the actual fill can be worse than the worst case the gate considered. A trade that the gate let through on the basis of a "1.5 percent worst-case loss" can fill at a 3 percent loss if a spike runs through the stop.

Second, the kill-switch is a software process, not a circuit breaker at the exchange. It reads broker tick data over a network connection and emits a market-close order over the same network connection. Both reads and writes take time. In a fast market the price can move three hundred pips between the read that triggered the kill-switch and the write that closed the position.

Third, prop firm rules sometimes have clauses TICPOZ cannot evaluate. Some firms retroactively void trades that look like latency arbitrage, even if the strategy was not designed for that. Some firms have "spirit of the rules" clauses that allow them to decline a payout for reasons the rule document does not enumerate. TICPOZ cannot model what a firm's compliance team will decide.

What this means for the trader

You are the responsible party. Read your firm's rule document end to end. Set your kill-switch buffer wider than the rule's literal floor. Test your strategy in challenges before deploying it to a funded account. Watch the first week of any new strategy live even if it is automated. Do not run a strategy you do not understand, even if a friend ran it successfully.

We give you the gates, the kill-switch, the monitoring panel, the dedicated IP, and the encrypted broker tokens. We do not give you immunity from the rules.

A reasonable expectation
A reasonable expectation: TICPOZ reduces the number of avoidable rule breaches — the ones where you wake up to a closed account because your strategy traded through news, or because a position size was wrong by a factor of ten. It does not reduce the unavoidable risk that comes from market gaps and live-fill slippage. Be honest with yourself about which kind of breach you are worried about.

The closing thought

Prop firms exist because trading capital is expensive and most retail traders have less of it than they need. They are not adversaries. Treat the rules as the price of leverage, not as something to be circumvented. Build strategies that respect the rules by construction, not strategies that ride the edge and rely on the kill-switch to bail you out.

Your strategy. Your account. Your responsibility. Our job is to make the plumbing cleaner.