How can I get the price and date data for PAc1?

Options
rice
rice Newcomer

When I search for PAc1’s price data in the workspace, I can retrieve the data shown in the chart below. However, when pulling data via the API, only partial data is returned.

截屏2025-07-25 11.07.23.png 截屏2025-07-25 13.43.29.png
Tagged:

Answers

  • Jirapongse
    Jirapongse ✭✭✭✭✭

    @rice

    Thank you for reaching out to us.

    Those values could be the settlement prices.

    ld.get_data(['PAc1'], 
                fields=['TR.SettlementPrice.Date','TR.SettlementPrice'],
                parameters={
                    'SDate': '2025-07-21',
                    'EDate': '2025-07-24',
                    'Frq':'D'
                })
    
    
    image.png
  • rice
    rice Newcomer

    Thanks for your help!