Configuring & Starting Up¶
Objective¶
By the end of this chapter you will have a working exchange with at least one gateway and three tradeable symbols, ready to accept orders. In addition you have become familiar with the three tools:
pm-config-genused to automatically generate configuration file based on options and flags.pm-cverifierused to verify an existing (possibly hand-crafterd) configuration file for errors or missing settingspm-config-deployused to compile a verified configuration file and install it as the artifactpm-engine/pm-scheduleractually read
Prerequisites¶
- EduMatcher installed and
pm-setupcompleted (see 00 — Installation & Setup).
Background¶
EduMatcher requires two essential processes:
- pm-engine — the matching engine.
- pm-scheduler — drives session phase transitions.
A gateway (pm-alf-console) connects traders to the engine.
Neither process reads engine_config.yaml directly, and neither accepts a
config path on its command line. engine_config.yaml is the file you
author and edit; what they actually read is a compiled artifact at
$EDUMATCHER_DATA_DIR/ref_data/engine_config.json, produced by
pm-config-deploy (see 00 — Installation & Setup for
where that directory comes from). This chapter's exercises follow that exact
pipeline: author → verify → deploy → start.
Exercise 1: Create a Minimal Configuration¶
Create a file called engine_config.yaml in your working directory:
symbols:
AAPL:
description: "Apple Inc."
tick_size: 0.01
last_price: 150.00
MSFT:
description: "Microsoft Corp."
tick_size: 0.01
last_price: 420.00
TSLA:
description: "Tesla Inc."
tick_size: 0.05
last_price: 250.00
gateways:
alf:
- id: TRADER01
description: "Alice — first trader"
role: TRADER
- id: TRADER02
description: "Bob — second trader"
role: TRADER
- id: GW_ADMIN
description: "Exchange operator"
role: ADMIN
Checkpoint: file saved, YAML is valid (no tabs!).
This file is only the authored source — nothing reads it yet. pm-engine
will not see any of this until you compile and install it with
pm-config-deploy in Exercise 5.
Exercise 2: Generate a Config with pm-config-gen¶
Instead of writing YAML by hand, you can use the pm-config-gen helper to
scaffold a configuration. Try generating an equivalent config:
pm-config-gen \
--symbols AAPL MSFT TSLA \
--symbol-opts AAPL:tick_decimals=2 \
--symbol-opts MSFT:tick_decimals=2 \
--symbol-opts TSLA:tick_decimals=2 \
--gateways TRADER01:TRADER TRADER02:TRADER GW_ADMIN:ADMIN \
--static-band 0.10 \
--dynamic-band 0.05 \
--sessions-enabled \
--output engine_config.yaml --force
This produces a ready-to-use engine_config.yaml with:
- Three symbols (AAPL, MSFT, TSLA) with 2-decimal tick precision.
- Two trader gateways and one admin gateway.
- Static and dynamic price collars pre-configured.
- Session schedule enabled (PRE_OPEN → CONTINUOUS → CLOSED).
Inspect the generated file:
Dry-run mode
Add --dry-run to preview the output without writing a file:
Adding market-maker gateways
You can include MM gateways in the same command:
Checkpoint: generated config matches the manual one; symbols and gateways present.
Exercise 3: Validate the Config with pm-cverifier¶
Before starting runtime processes, verify the file:
Check the verdict and exit code:
Expected for this chapter config:
- Verdict is
OKorWARN(depending on optional sections you did or did not add). - Exit code is
0when there are no warnings/errors,1when warnings exist, and2when hard errors exist.
CI-style validation
Treat warnings as failures and emit machine-readable output:
Focus only on actionable items
Hide info-level advisories while iterating:
Checkpoint: you can run pm-cverifier, read the verdict, and interpret its exit code.
Exercise 4: Practice Fixing Verifier Findings¶
Create a temporary broken config and use pm-cverifier to diagnose it:
Edit engine_config.bad.yaml and intentionally introduce two issues:
- Remove the
GW_ADMINgateway entry. - Set one symbol's
tick_decimalsto an invalid value like12.
Run verifier:
You should see at least:
M013warning (no ADMIN gateway).S010error (invalidtick_decimals).
Now fix the file and rerun until verdict is OK or your expected warning-only state.
Checkpoint: you can reproduce a verifier finding, map it to a check code, and clear it by fixing the config.
Exercise 5: Compile and Deploy the Config with pm-config-deploy¶
Verified YAML is still just a file on disk — no process reads it until it is compiled and installed. Check that it compiles without installing anything:
Expected output:
Now actually deploy it:
Expected output:
Compiled engine_config.yaml
to /Users/you/.local/share/edumatcher/ref_data/engine_config.json
3 symbol(s), 3 gateway(s).
Restart any running processes to pick it up.
Confirm where it landed:
Expected behavior:
--checkvalidates and reports symbol/gateway counts but writes nothing- deploying overwrites the previous
ref_data/engine_config.jsonatomically — a process reading it mid-deploy sees either the old configuration or the new one, never a half-written file - if
engine_config.yamlfails validation, deploy fails and prints[ERROR] ...followed byNothing was deployed.; any previous deployment is left untouched - deploying does not restart any already-running
pm-engine/pm-scheduler— they must be (re)started to pick up the new artifact, which Exercise 6 does next
Checkpoint: you can explain, in one
sentence, the difference between engine_config.yaml and
$EDUMATCHER_DATA_DIR/ref_data/engine_config.json.
Exercise 6: Start the Engine¶
Open a terminal and run:
pm-engine takes no config path on its command line — it always reads
whatever is currently deployed at $EDUMATCHER_DATA_DIR/ref_data/engine_config.json,
which is exactly the artifact Exercise 5 just installed.
Expected output includes (exact wording/log format may vary by version — this is illustrative, not a literal match target):
[INFO] Loaded 3 symbols: AAPL, MSFT, TSLA
[INFO] Loaded 3 gateways
[INFO] Engine listening on :5555 (PULL), publishing on :5556 (PUB)
The stable way to confirm the engine actually loaded your config, independent
of log wording, is to query it from a gateway once connected (Exercise 8) with
SYMBOLS — if it lists AAPL, MSFT, and TSLA, the engine started correctly
regardless of what the startup banner said.
Checkpoint: engine is running without errors.
Exercise 7: Start the Scheduler¶
In a second terminal:
Expected output (illustrative):
The scheduler will transition through PRE_OPEN → OPENING_AUCTION → CONTINUOUS
automatically (or you can trigger immediate continuous with --immediate).
If nothing was deployed
pm-scheduler refuses to guess a schedule the engine has never seen. If
Exercise 5 was skipped, it exits immediately with a fatal error naming
pm-config-deploy, instead of silently falling back to a built-in
timetable.
Checkpoint: scheduler reports session state changes.
Exercise 8: Connect a Gateway¶
In a third terminal:
You should see:
Try typing ORDERS — it should report no resting orders for this gateway.
Checkpoint: gateway prompt is interactive and connected.
Exercise 9: Verify the Setup¶
From the gateway prompt, confirm the three symbols are available by attempting a tiny limit order:
You should see an acknowledgement (the order rests since no matching ask exists).
Repeat for MSFT and TSLA to confirm all three books are active.
Checkpoint: all three symbols accept orders.
Exercise 10: Connect the Admin Gateway¶
In a fourth terminal:
Try an admin command:
You should see a book snapshot (possibly with the 1-lot bid from Exercise 9).
Checkpoint: admin gateway works; BOOK command shows data.
Exercise 11: Inspect Enriched SYMBOLS Metadata¶
From any connected gateway:
In addition to symbol IDs, inspect metadata fields exposed by the gateway view, including symbol description and matching constraints such as tick size and MM obligation settings when configured.
Checkpoint: you can identify at least description and tick_size for each symbol from SYMBOLS output.
Summary¶
You now have:
- A configuration file defining 3 symbols and 3 gateways.
- A repeatable verifier workflow (
pm-cverifier) to catch config problems before startup. - A compiled, deployed configuration (
pm-config-deploy) thatpm-engineandpm-scheduleractually read. - A running engine, scheduler, and at least one trader gateway.
- Confirmation that all symbols accept orders.
Reflection¶
Why does the engine, scheduler, and each gateway all run as separate processes connected over ZMQ sockets, instead of one monolithic program? What would you lose (or gain) operationally if the scheduler crashed while the engine kept running?
pm-engine and pm-scheduler never accept a config path, and neither reads
engine_config.yaml directly. What problem does forcing every process
through one compiled artifact (pm-config-deploy) solve that letting each
process parse its own copy of the YAML would not?