tesser-execution 0.9.1

Order orchestration, routing, and execution engine for Tesser
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# tesser-execution

Order management helpers that translate signals into broker requests.

## Overview
- Provides the `OrderSizer` trait plus a simple `FixedOrderSizer` implementation.
- `ExecutionEngine` consumes `Signal`s, computes quantities, and calls the configured `ExecutionClient`.
- Central place to add risk/remediation logic before orders hit the exchange connector.

## Extending
- Implement new sizers (e.g., Kelly, volatility scaling) by satisfying `OrderSizer`.
- Add pre-trade checks or risk guards inside `ExecutionEngine::handle_signal` before delegating to the client.

## Tests
```sh
cargo test -p tesser-execution
```