@rekurt/openkline - v0.2.0
    Preparing search index...

    Interface HistoryRequest

    Parameters for a DataTransport.fetchHistory call. from and to are Unix seconds and define the inclusive range the caller would like to receive. The transport may return fewer candles if the source has a lookback cap.

    interface HistoryRequest {
        from: number;
        resolution: string;
        symbol: string;
        to: number;
    }
    Index

    Properties

    from: number
    resolution: string
    symbol: string
    to: number