Example #1
0
 /// <summary>True if this is a weakening trend indicating candle type</summary>
 public static bool IsTrendWeakening(this Candle.EType type)
 {
     return(type == Candle.EType.Marubozu || type == Candle.EType.MarubozuWeakening);
 }
Example #2
0
 /// <summary>True if this is an indecision (reversal or continuation) candle type</summary>
 public static bool IsIndecision(this Candle.EType type)
 {
     return(type == Candle.EType.Doji || type == Candle.EType.SpinningTop || type == Candle.EType.Hammer || type == Candle.EType.InvHammer);
 }
Example #3
0
 /// <summary>True if this is a strengthening trend indicating candle type</summary>
 public static bool IsTrendStrengthening(this Candle.EType type)
 {
     return(type == Candle.EType.Marubozu || type == Candle.EType.MarubozuStrengthening);
 }