How do i get adjusted and unadjusted interval high and low price for a security ?

I want to get the interval high and low price of a security say 'AAPL.O' in the period 2023-01-01 and 2023-04-01 in python, what is the formula for it? Is there a parameter to for getting adjusted prices and non-adjusted prices

Best Answer

  • m.bunkowski
    Answer ✓

    Hi @thomas.ng

    You can also try this, that involves data cloud computations. Adjusted parameter can be 0 or 1.

    rd.get_data("AAPL.O",["MAX(TR.HighPrice)","MIN(TR.LowPrice)"], {"SDate": "2023-01-01", "EDate" : "2023-04-01", "Adjusted":1})

Answers