hoodkit
    Preparing search index...

    Interface CrossEvent

    A fired price-cross event.

    interface CrossEvent {
        direction: "up" | "down";
        previous: number;
        price: number;
        symbol: string;
        threshold: number;
    }
    Index
    direction: "up" | "down"
    previous: number
    price: number
    symbol: string
    threshold: number