Client wants to get to get dividend adjusted close prices sample RIC IXJ
Python code snips below for reference. What should I use in the PRICE_FIELD?
PRICE_FIELD = "TRDPRC_1"
def fetch_prices(rics: list, interval: str) -> pd.DataFrame:
"""Retrieve price history for a list of RICs."""
raw = ld.get_history(
universe = rics,
fields = [PRICE_FIELD],
interval = interval,
start = START_DATE,
end = END_DATE,
)
Please provide a sample query either with CLOSE:CLOSE or CLOSE:TRDPRC_1