Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

allow set account allocation on buy/sell orders #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions src/main/scala/com/larroy/ibclient/contract/FXContract.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package com.larroy.ibclient.contract

import com.ib.client.Contract
import com.ib.client.Types.SecType

// TODO: add more params

/**
* @param symbol
*/
class FXContract(symbol: String) extends Contract {
symbol(symbol)
secType(SecType.CASH.name())
exchange("IDEALPRO")
currency("GBP")
}
2 changes: 1 addition & 1 deletion src/main/scala/com/larroy/ibclient/order/Buy.scala
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ import com.larroy.ibclient.order.kind.Kind
* Buy Order
* @author piotr 19.02.15
*/
case class Buy(override val kind: Kind, override val quantity: Int) extends Order
case class Buy(override val kind: Kind, override val quantity: Int, override val account: Option[String] = None) extends Order
11 changes: 9 additions & 2 deletions src/main/scala/com/larroy/ibclient/order/Order.scala
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,24 @@ import com.larroy.ibclient.order.kind.Kind
trait Order {
def kind: Kind = ???
def quantity: Int = ???
def account: Option[String] = ???
def toIBOrder: IBOrder = {
import com.larroy.ibclient.order.kind._
val iBOrder = new IBOrder()
this match {
case Buy(_, qty) ⇒ {
case Buy(_, qty, acct) ⇒ {
iBOrder.action("BUY")
iBOrder.totalQuantity(qty)
acct.collect {
case acctStr => iBOrder.account(acctStr)
}
}
case Sell(_, qty) ⇒ {
case Sell(_, qty, acct) ⇒ {
iBOrder.action("SELL")
iBOrder.totalQuantity(qty)
acct.collect {
case acctStr => iBOrder.account(acctStr)
}
}
}
this.kind match {
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/com/larroy/ibclient/order/Sell.scala
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ import com.larroy.ibclient.order.kind.Kind
* Sell order
* @author piotr 19.02.15
*/
case class Sell(override val kind: Kind, override val quantity: Int) extends Order
case class Sell(override val kind: Kind, override val quantity: Int, override val account: Option[String] = None) extends Order
1 change: 1 addition & 0 deletions src/main/scala/com/larroy/ibclient/order/kind/Limit.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ package com.larroy.ibclient.order.kind

/**
* @author piotr 19.02.15
* @param limit price of max limit to buy
*/
case class Limit(limit: Double) extends Kind