import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ForecastTrajectorySpec, ForecastTrajectorySpec$Outbound } from "./forecasttrajectoryspec.js"; export type AssetForecastStrategy = { /** * 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; /** * Apply a blended strategy combining a requested model name with how many days to forecast. */ trajectory: Array; /** * 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; /** * Estimate prediction uncertainty based on recent * * @remarks * historical accuracy. */ estimateUncertainty?: boolean | undefined; /** * Interpolate between forecast horizons and return * * @remarks * daily forecast. */ interpolate?: boolean | undefined; /** * Return market drivers for each forecast. */ getMarketDrivers?: boolean | undefined; /** * Return moving averages for each forecast. */ getMovingAverages?: boolean | undefined; }; /** @internal */ export declare const AssetForecastStrategy$inboundSchema: z.ZodType; /** @internal */ export type AssetForecastStrategy$Outbound = { start_date?: string | null | undefined; end_date?: string | null | undefined; trajectory: Array; price_collar_sigma: number; estimate_uncertainty: boolean; interpolate: boolean; get_market_drivers: boolean; get_moving_averages: boolean; }; /** @internal */ export declare const AssetForecastStrategy$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 AssetForecastStrategy$ { /** @deprecated use `AssetForecastStrategy$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AssetForecastStrategy$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AssetForecastStrategy$Outbound` instead. */ type Outbound = AssetForecastStrategy$Outbound; } export declare function assetForecastStrategyToJSON(assetForecastStrategy: AssetForecastStrategy): string; export declare function assetForecastStrategyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=assetforecaststrategy.d.ts.map