← Araçlar

get_growth

Growth (YoY / QoQ) · salt-okunur

Period-over-period change of one metric: current/previous period and value, absolute and
    percentage change (relative to |previous|, so loss→profit swings are signed correctly).
    Computed here, not by the model.

Parametreler

adtipzorunluvarsayılanaçıklama
metric enum: revenue | cost_of_revenue | gross_profit | operating_profit | ebitda | depreciation | interest_expense | pretax_income | tax_expense | net_income | eps_diluted | total_assets | current_assets | cash | inventory | receivables | total_liabilities | current_liabilities | financial_debt | net_debt | equity | shares_outstanding | operating_cash_flow | investing_cash_flow | financing_cash_flow | capex | free_cash_flow | dividends_paid evet e.g. revenue, net_income, equity
ticker string BIST ticker (Yahoo series)
disclosure_id integer KAP FR disclosure id: YoY of the filing's current period vs its prior-year comparative
periods integer
maximum=40, minimum=1
8 How many current periods to compute
frequency enum: annual | quarterly "quarterly"
comparison enum: yoy | qoq | auto "auto" auto = yoy (same quarter last year / previous year)

Girdi şeması

{
  "properties": {
    "metric": {
      "description": "e.g. revenue, net_income, equity",
      "enum": [
        "revenue",
        "cost_of_revenue",
        "gross_profit",
        "operating_profit",
        "ebitda",
        "depreciation",
        "interest_expense",
        "pretax_income",
        "tax_expense",
        "net_income",
        "eps_diluted",
        "total_assets",
        "current_assets",
        "cash",
        "inventory",
        "receivables",
        "total_liabilities",
        "current_liabilities",
        "financial_debt",
        "net_debt",
        "equity",
        "shares_outstanding",
        "operating_cash_flow",
        "investing_cash_flow",
        "financing_cash_flow",
        "capex",
        "free_cash_flow",
        "dividends_paid"
      ],
      "title": "Metric",
      "type": "string"
    },
    "ticker": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "description": "BIST ticker (Yahoo series)",
      "title": "Ticker"
    },
    "disclosure_id": {
      "anyOf": [
        {
          "minimum": 1,
          "type": "integer"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "description": "KAP FR disclosure id: YoY of the filing's current period vs its prior-year comparative",
      "title": "Disclosure Id"
    },
    "periods": {
      "default": 8,
      "description": "How many current periods to compute",
      "maximum": 40,
      "minimum": 1,
      "title": "Periods",
      "type": "integer"
    },
    "frequency": {
      "default": "quarterly",
      "enum": [
        "annual",
        "quarterly"
      ],
      "title": "Frequency",
      "type": "string"
    },
    "comparison": {
      "default": "auto",
      "description": "auto = yoy (same quarter last year / previous year)",
      "enum": [
        "yoy",
        "qoq",
        "auto"
      ],
      "title": "Comparison",
      "type": "string"
    }
  },
  "required": [
    "metric"
  ],
  "title": "get_growthArguments",
  "type": "object"
}

Çıktı şeması

{
  "additionalProperties": true,
  "title": "get_growthDictOutput",
  "type": "object"
}