# Scrape OCBC Bank Stock Price and Data (SGX)

**Use case:** 

Collect OCBC Bank (O39) share data from the Singapore Exchange, including last price, change and volume for financial analysis.

## Input

```json
{
  "maxItems": 1000,
  "securityType": "stocks",
  "searchQuery": "OCBC",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "SG"
  }
}
```

## Output

```json
{
  "name": {
    "label": "Company / Security",
    "format": "text"
  },
  "symbol": {
    "label": "Symbol",
    "format": "text"
  },
  "type": {
    "label": "Type",
    "format": "text"
  },
  "lastPrice": {
    "label": "Last",
    "format": "number"
  },
  "change": {
    "label": "Change",
    "format": "number"
  },
  "changePercent": {
    "label": "Change %",
    "format": "number"
  },
  "previousClose": {
    "label": "Prev Close",
    "format": "number"
  },
  "dayHigh": {
    "label": "High",
    "format": "number"
  },
  "dayLow": {
    "label": "Low",
    "format": "number"
  },
  "volume": {
    "label": "Volume",
    "format": "number"
  },
  "lastTradedDate": {
    "label": "Last Traded",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Singapore SGX Listed Companies & Stock Price Scraper](https://apify.com/scrapers_lat/singapore-sgx-listed-companies-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapers_lat/singapore-sgx-listed-companies-scraper) to learn more, explore other use cases, and run it yourself.