Historical Share price data - Python

Hi, Im looking to pull historical share price data Open,Mid and Close for apple as an example for a period of 12 months but using Apples ISIN code - US0378331005 .

Is this possible? and if so any help would be appreciated.


Many thanks in advance


Tagged:

Best Answer

  • Hi @peter.akester

    I think the best route for you is to review some learning material that will answer most of your questions. Here are a few links that I believe will help you:

    1. Historical Pricing Tutorial
    2. Historical Pricing examples

    The one thing I will recommend is when you make a request for historical data, you can optionally leave the 'Fields' parameter out. What this will do is return all fields for the data you requested. For example, here are daily prices for Apple:

    ahs.png

    If I want to get intraday values (5 - minute bars), near 12 GMT:

    ahs.png

Answers