| 1 | <?php |
||
| 5 | class ClosedOrder extends AbstractOrder |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * Unfilled volume still outstanding on this order. |
||
| 9 | * @return double |
||
| 10 | */ |
||
| 11 | 1 | public function getOutstanding() |
|
| 15 | |||
| 16 | /** |
||
| 17 | * @return double |
||
| 18 | */ |
||
| 19 | 1 | public function getAveragePrice() |
|
| 23 | |||
| 24 | /** |
||
| 25 | * The original volume ordered. |
||
| 26 | * @return double |
||
| 27 | */ |
||
| 28 | 1 | public function getVolume() |
|
| 32 | } |
||
| 33 |