예제 #1
0
 public bool ReversesDownFrom(StockQuoteData otherQuote)
 {
     return(Open > otherQuote.High && Close < otherQuote.Low);
 }
예제 #2
0
 public bool ReversesUpFrom(StockQuoteData otherQuote)
 {
     return(Open < otherQuote.Low && Close > otherQuote.High);
 }
 public StockDirectionDetails(StockQuoteData quote, StockDirection direction)
 {
     StockQuote = quote;
     Direction  = direction;
 }