# Price Volume

## Summary

This dataset provides daily price and volume information for the Vietnamese stock market.

## Example code

```python
from finter.data import ContentFactory
cf = ContentFactory("vn_stock", 20200101, 20200201)
df = cf.get_df("ClosePrice")
```

## Metadata

| Valid From | Delivery Schedule | Time Zone | Data Frequency |
| ---------- | ----------------- | --------- | -------------- |
|            |                   |           | 1d             |

## Item List

* **Price Information**
  * OpenPrice
  * ClosePrice
  * HighestPrice
  * LowestPrice
  * AveragePrice
* **Volume and Value Information**
  * TotalVolume
  * TotalValue
* **Foreign Investment Information**
  * ForeignTotalRoom
  * ForeignCurrentRoom
