Write an Actor (Rust)
An actor receives market data, custom data/signals, and system events but does not manage orders.
This guide walks through building a SpreadMonitor that subscribes to quotes
and logs the bid-ask spread.
For background on actors, traits, and handler dispatch, see the Actors and Rust concept guides.
Define the struct
An actor owns a DataActorCore and any state it needs. The core stores runtime
state for the actor. User code normally reaches that state through the
DataActor facade methods such as:
clock()cache()config()actor_id()trader_id()- Subscription methods
use nautilus_common::{nautilus_actor, actor::{DataActor, DataActorConfig, DataActorCore}};
use nautilus_model::{data::QuoteTick, identifiers::{ActorId, InstrumentId}};
pub struct SpreadMonitor {
core: DataActorCore,
instrument_id: InstrumentId,
}Implement the constructor
Create a DataActorConfig with an actor ID, then pass it to DataActorCore::new.
The config fields use Option with defaults, so ..Default::default() covers
everything except the actor ID.
impl SpreadMonitor {
pub fn new(instrument_id: InstrumentId) -> Self {
let config = DataActorConfig {
actor_id: Some(ActorId::from("SPREAD_MON-001")),
..Default::default()
};
Self {
core: DataActorCore::new(config),
instrument_id,
}
}
}Wire up the core and implement Debug
The nautilus_actor! macro connects the actor's DataActorCore field to the
runtime contract. By default it delegates to a field named core; pass a second
argument for a different field name. Normal callbacks do not call the generated
native accessors; use the DataActor facade methods on self.
Runtime registration uses blanket Actor and Component implementations that
require DataActorNative and Debug. The macro supplies DataActorNative;
implement Debug manually or derive it.
nautilus_actor!(SpreadMonitor);
impl std::fmt::Debug for SpreadMonitor {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.debug_struct("SpreadMonitor").finish()
}
}Implement the DataActor trait
Override handler methods to receive data. All handlers have default no-op
implementations, so you only override what you need. Each handler returns
anyhow::Result<()>.
impl DataActor for SpreadMonitor {
fn on_start(&mut self) -> anyhow::Result<()> {
self.subscribe_quotes(self.instrument_id, None, None);
Ok(())
}
fn on_quote(&mut self, quote: &QuoteTick) -> anyhow::Result<()> {
let spread = quote.ask_price.as_f64() - quote.bid_price.as_f64();
log::info!("Spread: {spread:.5}");
Ok(())
}
}subscribe_quotes is available directly on self through the DataActor
trait. See the handler table for all
available handlers.
Native runtime access
Use the public DataActor facade by default. Add DataActorNative only for an
explicit native-only access path that the facade methods cannot serve.
Read-only properties are available on the facade:
config()actor_id()trader_id()is_registered()
| Actor path | Native‑only access? | Normal API |
|---|---|---|
| Native Rust binary | Only when needed | DataActor facade |
| Rust configured from Python | Only when needed | DataActor facade |
| Python‑authored actor | No | DataActor facade |
| Plug‑in‑compatible actor | No | DataActor facade |
Import DataActorNative only for performance-sensitive native code or host
integration internals. It exposes borrowed core state such as:
clock_mut()clock_rc()cache_ref()cache_rc()
These types do not cross Python or plug-in boundaries, so portable actors should use facade methods such as:
clock()cache()
Register the actor
With a BacktestEngine:
let actor = SpreadMonitor::new(instrument_id);
engine.add_actor(actor)?;With a LiveNode:
let actor = SpreadMonitor::new(instrument_id);
node.add_actor(actor)?;Guard safety
When the system dispatches messages to your actor, it obtains a short-lived
ActorRef guard from the registry. You do not manage these guards directly.
If you write code that accesses other actors in a callback, follow these
rules:
- Look up actors by ID each time; do not cache an
ActorRef. - Drop the guard before the scope ends; never store it in a field.
- Never hold a guard across an
.awaitpoint.
The subscription methods on DataActorCore handle this correctly by
capturing the actor ID and performing the lookup inside the callback closure.
See Runtime invariants for
the full threading and registry model.
Full example
See
BookImbalanceActor
for a more complete actor that tracks per-instrument state and prints a
summary on stop.
Configure a Live Trading Node
Set up a TradingNode for live market connectivity. For background on live trading architecture and reconciliation, see the Live trading concept guide.
Write a Strategy (Rust)
A strategy extends an actor with order management. This guide walks through building a minimal strategy that subscribes to quotes and submits market orders....