Skip to content

Instantly share code, notes, and snippets.

@ashkrit
Created August 11, 2020 03:33
Show Gist options
  • Save ashkrit/b14aa2b657c13abf5589ec9572e66fc6 to your computer and use it in GitHub Desktop.
Save ashkrit/b14aa2b657c13abf5589ec9572e66fc6 to your computer and use it in GitHub Desktop.
newOrder(equity("IBM"), (order, ts) -> {
order
.buy(100)
.at(126.07d);
ts.execute(order);
});
newOrder(equity("GOOG"), (order, ts) -> {
order
.sell(100)
.at(1506.85)
.partial();
ts.execute(order);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment