> ## 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.

# القيم والنِّسَب المُشتقَّة

> derivedFiguresAndRatios()

[\< رجوع](/ar/sdks/languages/java#derivedfiguresandratios)

<div id="overview">
  ## نظرة عامة
</div>

<div id="available-operations">
  ### العمليات المتاحة
</div>

* [get](#get) - جلب الأرقام والنسب المشتقة V3

<div id="get">
  ## جلب
</div>

جلب القيم والنِّسَب المشتقة لقائمة من الرموز

<div id="example-usage">
  ### مثال على الاستخدام
</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()) {
            // معالجة الاستجابة
        }
    }
}
```

<div id="parameters">
  ### المعاملات
</div>

| المعامل   | النوع               | إلزامي               | الوصف                       |
| --------- | ------------------- | -------------------- | --------------------------- |
| `symbols` | *String*            | :heavy\_check\_mark: | قائمة بالرموز مفصولة بفواصل |
| `from`    | *Optional\<String>* | :heavy\_minus\_sign: | تاريخ البدء                 |
| `to`      | *Optional\<String>* | :heavy\_minus\_sign: | تاريخ الانتهاء              |
| `date`    | *Optional\<String>* | :heavy\_minus\_sign: | نوع التقرير                 |

<div id="response">
  ### الاستجابة
</div>

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

<div id="errors">
  ### الأخطاء
</div>

| نوع الخطأ                  | رمز الحالة | نوع المحتوى |
| -------------------------- | ---------- | ----------- |
| models/errors/APIException | 4XX, 5XX   | */*         |
