EvalItUp
START FREE
Skip to main content
Local HTTP API

Python to Rithmic Prop Firm Accounts

Send trading signals from any Python script directly to your Rithmic accounts via local HTTP API.

Instant

The API runs on localhost. No network latency, no cloud dependency, no authentication overhead.

Use Cases

Python Trading Bots

Send signals from your quantitative strategies directly to Rithmic.

Sierra Chart Integration

Trigger EvalItUp from Sierra Chart studies and custom indicators.

NinjaTrader Scripts

Forward NinjaTrader signals to multiple Rithmic prop firm accounts.

Custom Applications

Any application that can make HTTP POST requests works with EvalItUp.

Code Examples

Send a Buy Signal

Python
import requests

signal = {
    "action": "buy",
    "symbol": "MESM5",
    "quantity": 1,
    "pool": "apex-mes"
}

response = requests.post(
    "http://127.0.0.1:8080/signal",
    json=signal,
    timeout=1
)
print(response.json())

Close All Positions

Python
import requests

requests.post(
    "http://127.0.0.1:8080/signal",
    json={
        "action": "close_all",
        "symbol": "MESM5",
        "quantity": 0,
        "pool": "apex-mes"
    },
    timeout=1
)

Instant Execution

Localhost communication with no network overhead.

Simple REST API

Standard JSON over HTTP. Works with any language.

100% Local

No cloud, no API keys, no external dependencies.

Ready to Automate?

Start free with 2 accounts. Send your first signal in minutes.