コード例 #1
0
ファイル: Candle.cs プロジェクト: psryland/rylogic_code
 /// <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);
 }
コード例 #2
0
ファイル: Candle.cs プロジェクト: psryland/rylogic_code
 /// <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);
 }
コード例 #3
0
ファイル: Candle.cs プロジェクト: psryland/rylogic_code
 /// <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);
 }