import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetFuturesForecastsRequest = { /** * Future symbol */ symbol: string; /** * Start of forecast window (YYYY-MM-DD). The returned * * @remarks * object will contain every forecast made between start_date and * end_date. _Default value_ : most recent date with forecasts */ startDate?: string | null | undefined; /** * End of forecast window (YYYY-MM-DD). The returned * * @remarks * object will contain every forecast made between start_date and * end_date. _Default value_ : most recent date with forecasts */ endDate?: string | null | undefined; /** * Interpolate between forecast horizons and return * * @remarks * daily forecast. */ interpolate?: boolean | undefined; /** * Estimate prediction uncertainty based on recent * * @remarks * historical accuracy. */ estimateUncertainty?: boolean | undefined; /** * Return market drivers for each forecast. */ getMarketDrivers?: boolean | undefined; /** * Return moving averages for each forecast. */ getMovingAverages?: boolean | undefined; /** * Apply an empirical price collar to the forecasts. This regulates the forecast when it suggests implausibly large price changes. A smaller number results in a more aggressive collar. Must be a positive number. */ priceCollarSigma?: number | undefined; /** * Select a specific data model to use when generating a forecast for a future symbol. */ modelName?: string | null | undefined; }; /** @internal */ export declare const GetFuturesForecastsRequest$inboundSchema: z.ZodType; /** @internal */ export type GetFuturesForecastsRequest$Outbound = { symbol: string; start_date?: string | null | undefined; end_date?: string | null | undefined; interpolate: boolean; estimate_uncertainty: boolean; get_market_drivers: boolean; get_moving_averages: boolean; price_collar_sigma: number; model_name?: string | null | undefined; }; /** @internal */ export declare const GetFuturesForecastsRequest$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace GetFuturesForecastsRequest$ { /** @deprecated use `GetFuturesForecastsRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetFuturesForecastsRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetFuturesForecastsRequest$Outbound` instead. */ type Outbound = GetFuturesForecastsRequest$Outbound; } export declare function getFuturesForecastsRequestToJSON(getFuturesForecastsRequest: GetFuturesForecastsRequest): string; export declare function getFuturesForecastsRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getfuturesforecasts.d.ts.map