Example #1
0
 public bool ReversesDownFrom(StockQuote other)
 {
     return(this.open > other.high && this.close < other.low);
 }
Example #2
0
 public bool ReversesUpFrom(StockQuote other)
 {
     return(this.open < other.low && this.close > other.high);
 }
Example #3
0
 public Reversal(StockQuote quote, ReversalDirection direction)
 {
     this.Quote     = quote;
     this.Direction = direction;
 }