How we can read in a list the values from the target P (Price) from the following xml?
<D d="2012-11-01">
<P t="00:00:00+01:00">39.90999985</P>
<P t="01:00:00+01:00">36.22999954</P>
<P t="02:00:00+01:00">29.44000053</P>
</D>
<D d="2012-11-02">
<P t="00:00:00+01:00">32.33000183</P>
<P t="01:00:00+01:00">29.12999916</P>
<P t="02:00:00+01:00">30.18000031</P>
<P t="03:00:00+01:00">29.12999916</P>
</D>
I know the procedure (there are other topics here for this) in C# but i have the query of the chances inside the target P and D. Play this any role or if i read from target P it will read all the prices like the above xml file
<D>
<P>39.90999985</P>
<P>36.22999954</P>
<P>29.44000053</P>
</D>