import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetHedgeIndicatorRequest = { /** * Future symbol */ symbol: string; /** * Contract year and month. _Default value_ : All * * @remarks * available contracts */ contract?: string | null | undefined; /** * Number of trading days in the future to hedge. _Default * * @remarks * value_ : Full forecast */ hedgeHorizon?: number | null | undefined; /** * Number of trading days to look back when computing * * @remarks * indicator quintiles. _Default value_ : 30 days */ lookbackDays?: number | undefined; /** * Start of indicator window (YYYY-MM-DD). The * * @remarks * returned object will contain every requested indicator made * between start_date and end_date. _Default value_ : most recent * date with indicators */ startDate?: string | null | undefined; /** * End of indicator window (YYYY-MM-DD). The * * @remarks * returned object will contain every requested indicator made * between start_date and end_date. _Default value_ : most recent * date with indicators */ endDate?: string | null | undefined; /** * Select a specific data model to use when generating the hedge indicator for a future symbol. */ modelName?: string | null | undefined; }; /** @internal */ export declare const GetHedgeIndicatorRequest$inboundSchema: z.ZodType; /** @internal */ export type GetHedgeIndicatorRequest$Outbound = { symbol: string; contract?: string | null | undefined; hedge_horizon?: number | null | undefined; lookback_days: number; start_date?: string | null | undefined; end_date?: string | null | undefined; model_name?: string | null | undefined; }; /** @internal */ export declare const GetHedgeIndicatorRequest$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 GetHedgeIndicatorRequest$ { /** @deprecated use `GetHedgeIndicatorRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetHedgeIndicatorRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetHedgeIndicatorRequest$Outbound` instead. */ type Outbound = GetHedgeIndicatorRequest$Outbound; } export declare function getHedgeIndicatorRequestToJSON(getHedgeIndicatorRequest: GetHedgeIndicatorRequest): string; export declare function getHedgeIndicatorRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=gethedgeindicator.d.ts.map