Skip to content

Instantly share code, notes, and snippets.

@prystupa
Created January 12, 2013 19:01
Show Gist options
  • Save prystupa/4519955 to your computer and use it in GitHub Desktop.
Save prystupa/4519955 to your computer and use it in GitHub Desktop.
PriceLevel with PegPrice added
sealed trait PriceLevel
case object MarketPrice extends PriceLevel
case class LimitPrice(limit: Double) extends PriceLevel
case object PegPrice extends PriceLevel
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment