AuctionDuration
An auction duration is used to configure 3 auction periods:
duration > 0
,volume == 0
: The auction will last for at least N seconds.duration == 0
,volume > 0
: The auction will end once the given volume will match at uncrossing.duration > 0
,volume > 0
: The auction will take at least N seconds, but can end sooner if the market can trade a certain volume.
type AuctionDuration {
durationSecs: Int!
volume: Int!
}
Fields
AuctionDuration.durationSecs
● Int!
non-null scalar
Duration of the auction in seconds
AuctionDuration.volume
● Int!
non-null scalar
Target uncrossing trading volume
Member of
Market
object