public bool ReversesUpFrom(StockQuote otherQuote) { return(Open < otherQuote.Low && Close > otherQuote.High); }
public bool ReversesDownFrom(StockQuote otherQuote) { return(Open > otherQuote.High && Close < otherQuote.Low); }