Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • Stata module to download BCRP (Central Reserve Bank of Peru) data: dbcrp

    Dear Statalist community,

    I would like to announce the release of dbcrp, a simple Stata package I built to download macroeconomic time series directly from the API of the Central Reserve Bank of Peru (BCRP). As an economics student, I often needed a quick and clean way to get BCRP data into Stata without messy workarounds. This package streamlines the process.

    To install:

    Code:
    ssc install dbcrp
    Quick example using monthly inflation (PN01271PM):

    Code:
    clear all
    dbcrp PN01271PM, names(ipc)
    tsline ipc
    Further options include date ranges, frequency selection, and batch downloads of multiple series (the API supports up to 20 series per request).

    GitHub: https://github.com/Anthony-maxed/STATA-dbcrp
    LinkedIn: https://www.linkedin.com/in/anthony-...fre-1a3897263/

    Feedback and suggestions are very welcome.

    Best regards,
    Anthony Huaynate Onofre
    Universidad ESAN
    Last edited by Anthony Huaynate; 21 Sep 2026, 13:55.
Working...
X