As a trader I want to be able to monitor stock prices such that when they breach a trigger level orders can be executed automatically.
Note:
The implementation of PriceSource and EecutionService is out of scope, assuming that it will be provided by third party. You need to listen to price updates from PriceSource and act accordingly.
Given the following interface definitions (provided)
public interface ExecutionService {
void buy(String security, double price, int volume);
void sell(String security, double price, int volume);
}
public interface PriceListener {
void priceUpdate(String security, double price);
}
public interface PriceSource {
void addPriceListener(PriceListener listener);
void removePriceListener(PriceListener listener);
}
Develop a basic implementation of the PriceListener interface that provides the following behaviour:
- Monitors price movements on a specified single stock (e.g. "IBM")
- Executes a single "buy" instruction for a specified number of lots (e.g. 100) as soon as the price of that stock is seen to be below a specified price (e.g. 55.0). Don’t worry what units that is in.
- Please "work out loud" and ask questions
- This is not a test of your API knowledge so feel free to check the web as reference
- There is no specific solution we are looking for
- Java 8
- JUnit 4
- Mockito
- EasyMock
- JMock