Hey gang, just trying to get 100% confirmation on something. If I made the following request:
What I would be doing is:
1. taking every lay offered for that selection for a price of 1.87 or greater, up to a stake of $9
2. possibly continuing on to take prices below 1.87 until the weighted average price I have taken drops below 1.87, OR I fullfil my $9 stake.
3. If both 1 and 2 complete and I still haven't reached $9, either
Is that correct? I plan on pushing a fair volume of trade using this request as a template so I'd like to make sure my assumptions about it are sound.
Code:
[
{
"jsonrpc": "2.0",
"method": "SportsAPING/v1.0/placeOrders",
"params": {
"marketId":"1.157097705",
"instructions": [
{
"orderType": "LIMIT",
"selectionId": 16490833,
"side": "BACK",
"limitOrder": {
"size": 9,
"price": 1.87,
"persistanceType": "LAPSE",
"timeInForce": "FILL_OR_KILL",
"minFillSize": "1"
}
}
]
},
"id": 1
}
]
1. taking every lay offered for that selection for a price of 1.87 or greater, up to a stake of $9
2. possibly continuing on to take prices below 1.87 until the weighted average price I have taken drops below 1.87, OR I fullfil my $9 stake.
3. If both 1 and 2 complete and I still haven't reached $9, either
- I have reached at least a stake of $1 (minFillSize), and will take whatever I took during 1. and 2.
- I have not reached a stake of $1 and will take nothing.
Is that correct? I plan on pushing a fair volume of trade using this request as a template so I'd like to make sure my assumptions about it are sound.

