# Price Volume v2

## Example code

```python
from finter.data import ContentFactory

cf = ContentFactory("kr_stock", 20200101, 20200201)
df = cf.get_df("kr-spot-price_close")
```

## Item List

### Price Data

* `kr-spot-price_close`: Closing price&#x20;
* `kr-spot-price_base`: Base price
* `kr-spot-price_open`: Opening price
* `kr-spot-price_high`: Highest price
* `kr-spot-price_low`: Lowest price

### Volume Data

* `kr-spot-volume_sum`: Total volume&#x20;
* `kr-spot-turnover`: Turnover
* `kr-spot-turnover_all`: Total turnover

### Shares Data

* `kr-spot-listed_shares`: Number of listed shares
* `kr-spot-listed_shares_to_be`: Number of shares to be listed
* `kr-spot-treasury_stock`: Treasury stock
* `kr-spot-foreigner_shares`: Number of shares held by foreigners
* `kr-spot-foreigner_shares_ratio`: Ratio of shares held by foreigners

### Market Capitalization

* `kr-spot-mkt_cap`: Market capitalization
* `kr-spot-mkt_cap_all`: Total market capitalization
* `kr-spot-mkt_cap_index`: Market capitalization index
* `kr-spot-free_float`: Free float shares


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://quantit.gitbook.io/quanda/kr-stock/market/price-volume-1.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
