There are no notes for this item.
<h2>Over-the-counter trades</h2>
<div class="table-wrapper">
<table>
<thead>
<tr>
<th>
Date / time
</th>
<th class="text-right">
Price
</th>
<th class="text-right">
Amount
</th>
<th class="text-right">
Volume
</th>
</tr>
</thead>
<tbody>
<tr>
<td>16.01.2018 09:00:53 CET</td>
<td class="text-right">CHF 11.693</td>
<td class="text-right">CHF 2’853</td>
<td class="text-right">244</td>
</tr>
<tr>
<td>16.01.2018 09:00:53 CET</td>
<td class="text-right">CHF 11.693</td>
<td class="text-right">CHF 49’111</td>
<td class="text-right">4’200</td>
</tr>
</tbody>
</table>
</div>
<h2>{{ title }}</h2>
<div class="table-wrapper">
<table>
<thead>
<tr>
<th>
Date / time
</th>
<th class="text-right">
Price
</th>
<th class="text-right">
Amount
</th>
<th class="text-right">
Volume
</th>
</tr>
</thead>
<tbody>
{{#each trade}}
<tr>
<td>{{date}} {{time}}</td>
<td class="text-right">{{ price }}</td>
<td class="text-right">{{ amount }}</td>
<td class="text-right">{{ volume }}</td>
</tr>
{{/each}}
</tbody>
</table>
</div>
{
"title": "Over-the-counter trades",
"trade": [
{
"time": "09:00:53 CET",
"date": "16.01.2018",
"price": "CHF 11.693",
"amount": "CHF 2’853",
"volume": "244"
},
{
"time": "09:00:53 CET",
"date": "16.01.2018",
"price": "CHF 11.693",
"amount": "CHF 49’111",
"volume": "4’200"
}
]
}