Skip to content

Custom Strategy: Market Making

Alex Lopatin edited this page Jan 25, 2019 · 2 revisions

In this tutorial we will write a custom market making trading strategy and run it on live Coinbase order book data.

All code snippets are in Scala. The equivalent Java code can be found in the example source code. The source for this tutorial is at: flashbot-market-maker (Scala) or flashbot-market-maker (Java).

1. Create a new strategy class

In a new file at src/main/scala/MarketMaker.scala (or src/main/java/MarketMaker.java), create a class that extends Strategy:

Clone this wiki locally