package Strategy.Holding; // strategy for changing the price of a holding public interface PriceChanger { // given an amount, return how much the amount should be changed by public double variation(double amount); }