public bool ReversesDownFrom(StockQuote otherQuote) { return Open > otherQuote.High && Close < otherQuote.Low; }
public bool ReversesUpFrom(StockQuote otherQuote) { return Open < otherQuote.Low && Close > otherQuote.High; }
public Reversal(StockQuote quote, ReversalDirection direction) { StockQuote = quote; Direction = direction; }