import { HedgewiseCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; import { HedgewiseError } from "../models/errors/hedgewiseerror.js"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/errors/httpclienterrors.js"; import * as errors from "../models/errors/index.js"; import { ResponseValidationError } from "../models/errors/responsevalidationerror.js"; import { SDKValidationError } from "../models/errors/sdkvalidationerror.js"; import * as operations from "../models/operations/index.js"; import { APIPromise } from "../types/async.js"; import { Result } from "../types/fp.js"; /** * Get hedge indicator for a future * * @remarks * Returns a list of values indicating the likelihood that the * future price will increase, indicating that this is a good time to * hedge. The indicator is quintiles of the ratio of the forecasted price * trajectory (out to a specified horizon) to the forecasted ulcer index, * where the quintiles are given by historical values of this indicator * back a specified number of lookback days. */ export declare function futuresGetHedgeIndicator(client: HedgewiseCore, request: operations.GetHedgeIndicatorRequest, options?: RequestOptions): APIPromise>; //# sourceMappingURL=futuresGetHedgeIndicator.d.ts.map