Where the controller attaches/detaches its primitives (the chart implements this).

interface TradeHost {
    addPrimitive(p: IPrimitive): void;
    removePrimitive(p: IPrimitive): void;
}

Methods