> ## Documentation Index
> Fetch the complete documentation index at: https://docs.benzinga.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Cifras y ratios derivados

> derivedFiguresAndRatios()

[\< VOLVER](/es/sdks/languages/java#derivedfiguresandratios)

<div id="overview">
  ## Descripción general
</div>

<div id="available-operations">
  ### Operaciones disponibles
</div>

* [get](#get) - Obtener métricas y ratios derivados v3

<div id="get">
  ## get
</div>

Obtener ratios y cifras derivadas para una lista de símbolos

<div id="example-usage">
  ### Ejemplo de uso
</div>

```java theme={null}
package hello.world;

import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.operations.GetDerivedFiguresAndRatiosV3Response;

public class Application {

    public static void main(String[] args) throws Exception {

        Bzclient sdk = Bzclient.builder()
                .apiKeyAuth("<YOUR_API_KEY_HERE>")
            .build();

        GetDerivedFiguresAndRatiosV3Response res = sdk.derivedFiguresAndRatios().get()
                .symbols("<value>")
                .from("<value>")
                .to("<value>")
                .date("2024-08-12")
                .call();

        if (res.string().isPresent()) {
            // manejar la respuesta
        }
    }
}
```

<div id="parameters">
  ### Parámetros
</div>

| Parámetro | Tipo                | Obligatorio          | Descripción                          |
| --------- | ------------------- | -------------------- | ------------------------------------ |
| `symbols` | *String*            | :heavy\_check\_mark: | Lista de símbolos separada por comas |
| `from`    | *Optional\<String>* | :heavy\_minus\_sign: | Fecha de inicio                      |
| `to`      | *Optional\<String>* | :heavy\_minus\_sign: | Fecha de fin                         |
| `date`    | *Optional\<String>* | :heavy\_minus\_sign: | Tipo de informe                      |

<div id="response">
  ### Respuesta
</div>

**[GetDerivedFiguresAndRatiosV3Response](../../models/operations/GetDerivedFiguresAndRatiosV3Response.md)**

<div id="errors">
  ### Errores
</div>

| Tipo de error              | Código de estado | Tipo de contenido |
| -------------------------- | ---------------- | ----------------- |
| models/errors/APIException | 4XX, 5XX         | */*               |
