-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Concourse
committed
Feb 7, 2024
1 parent
91dbde0
commit ecdb02c
Showing
27 changed files
with
4,163 additions
and
980 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
|
||
|
||
# BlockAndOrder | ||
# BlockAndOrders | ||
|
||
|
||
## Properties | ||
|
||
| Name | Type | Description | Notes | | ||
|------------ | ------------- | ------------- | -------------| | ||
|**block** | [**Block**](Block.md) | | | | ||
|**order** | [**Order**](Order.md) | | | | ||
|**orders** | [**List<Order>**](Order.md) | | | | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
|
||
|
||
# BlockAndOrdersCreateRequest | ||
|
||
|
||
## Properties | ||
|
||
| Name | Type | Description | Notes | | ||
|------------ | ------------- | ------------- | -------------| | ||
|**requests** | [**List<BlockAndOrdersRequest>**](BlockAndOrdersRequest.md) | A collection of BlockAndOrdersRequest. | | | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
|
||
|
||
# BlockAndOrdersRequest | ||
|
||
|
||
## Properties | ||
|
||
| Name | Type | Description | Notes | | ||
|------------ | ------------- | ------------- | -------------| | ||
|**blockId** | [**ResourceId**](ResourceId.md) | | | | ||
|**orders** | [**List<BlockedOrderRequest>**](BlockedOrderRequest.md) | An order which belongs to a block. Fields common to both entities (such as instrument) should be derived from the block. | | | ||
|**blockProperties** | [**Map<String, PerpetualProperty>**](PerpetualProperty.md) | Client-defined properties associated with this block. | [optional] | | ||
|**instrumentIdentifiers** | **Map<String, String>** | The instrument ordered. | | | ||
|**side** | **String** | The client's representation of the block's side (buy, sell, short, etc) | | | ||
|**type** | **String** | The block order's type (examples: Limit, Market, ...) | [optional] | | ||
|**timeInForce** | **String** | The block orders' time in force (examples: Day, GoodTilCancel, ...) | [optional] | | ||
|**date** | **OffsetDateTime** | The date on which the block was made | [optional] | | ||
|**limitPrice** | [**CurrencyAndAmount**](CurrencyAndAmount.md) | | [optional] | | ||
|**stopPrice** | [**CurrencyAndAmount**](CurrencyAndAmount.md) | | [optional] | | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
|
||
|
||
# BlockedOrderRequest | ||
|
||
|
||
## Properties | ||
|
||
| Name | Type | Description | Notes | | ||
|------------ | ------------- | ------------- | -------------| | ||
|**properties** | [**Map<String, PerpetualProperty>**](PerpetualProperty.md) | Client-defined properties associated with this order. | [optional] | | ||
|**quantity** | **java.math.BigDecimal** | The quantity of given instrument ordered. | | | ||
|**orderBookId** | [**ResourceId**](ResourceId.md) | | [optional] | | ||
|**portfolioId** | [**ResourceId**](ResourceId.md) | | [optional] | | ||
|**id** | [**ResourceId**](ResourceId.md) | | | | ||
|**state** | **String** | The order's state (examples: New, PartiallyFilled, ...) | [optional] | | ||
|**date** | **OffsetDateTime** | The date on which the order was made | [optional] | | ||
|**price** | [**CurrencyAndAmount**](CurrencyAndAmount.md) | | [optional] | | ||
|**orderInstruction** | [**ResourceId**](ResourceId.md) | | [optional] | | ||
|**_package** | [**ResourceId**](ResourceId.md) | | [optional] | | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
|
||
|
||
# GetRecipeComposerResponse | ||
|
||
|
||
## Properties | ||
|
||
| Name | Type | Description | Notes | | ||
|------------ | ------------- | ------------- | -------------| | ||
|**href** | **URI** | The specific Uniform Resource Identifier (URI) for this resource at the requested effective and asAt datetime. | [optional] | | ||
|**value** | [**RecipeComposer**](RecipeComposer.md) | | [optional] | | ||
|**links** | [**List<Link>**](Link.md) | | [optional] | | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.