Пример #1
0
 public static Indicator GetFake_Price()
 {
     return(new Indicator
     {
         IndicatorId = "master.PRICE",
         UserId = "master",
         Abbreviation = "PRICE",
         Name = "Price",
         Description = "Real time price indicator",
         Formula = "C# formula",
         Dependencies = FakeIndicatorDependency.GetFake_List()
     });
 }
Пример #2
0
 public static Indicator GetFake_RSI()
 {
     return(new Indicator
     {
         IndicatorId = "master.RSI",
         UserId = "master",
         Abbreviation = "RSI",
         Name = "RSI",
         Description = @"The Relative Strength Index (RSI) is a momentum oscillator that measures the speed and change of price movements.
                         RSI oscillates between zero and 100. Traditionally, and according to Wilder, RSI is considered overbought when above 70 and oversold when below 30.",
         Formula = "C# formula",
         Dependencies = FakeIndicatorDependency.GetFake_List()
     });
 }