HTML syntax for "Latest quote" from table on web site

I am using the ‚table on web site‘ option for getting the latest quote for a security.

This is what the HTML page looks like:

And this what the markup looks like:

<table class="pure-table pure-table-striped">
  <thead>
      <tr>
          <th>Date</th>
          <th>Open</th>
          <th>High</th>
          <th>Low</th>
          <th>Close</th>
          <th>Volume</th>
      </tr>
  </thead>

  <tbody>
      <tr>
          <td>May 04, 2020 16:35:00</td>
          <td class="rightAlign">123.60</td>
          <td class="rightAlign">123.60</td>
          <td class="rightAlign">123.60</td>
          <td class="rightAlign">123.60</td>
          <td class="rightAlign">2,017,584.000</td>
      </tr>
  </tbody>
</table>

But unfortunately, PP doesn't seem to detect any data?
![image|690x351](upload://lzHfOQdU3ja8xmGUyapPJtX3X6l.png) 

Any ideas what the culprit might be?

I have a feeling this could be due to the date format (see this) however, I’m not sure what to do because the table on that web page is data on a minute-by-minute basis

1 Like

The root cause is the used timestamp next to the date inside the same cell.

Br
Marco

That did the trick! I’ve since changed the mark up so there’s separate columns for date and time and now PP picks up the latest quote just fine. Thanks :slight_smile:

Dieses Thema wurde automatisch 30 Tage nach der letzten Antwort geschlossen. Es sind keine neuen Nachrichten mehr erlaubt.