Class IndicatorHelper
- Namespace
- StockSharp.Algo.Indicators
- Assembly
- StockSharp.BusinessEntities.dll
Extension class for indicators.
public static class IndicatorHelper
- Inheritance
-
IndicatorHelper
- Inherited Members
Methods
GetCurrentValue(IIndicator)
To get the current value of the indicator.
public static decimal GetCurrentValue(this IIndicator indicator)
Parameters
indicator
IIndicatorIndicator.
Returns
- decimal
The current value.
GetCurrentValue<T>(IIndicator)
To get the current value of the indicator.
public static T GetCurrentValue<T>(this IIndicator indicator)
Parameters
indicator
IIndicatorIndicator.
Returns
- T
The current value.
Type Parameters
T
Value type.
GetFirstValue(IIndicator)
To get the first value of the indicator.
public static decimal GetFirstValue(this IIndicator indicator)
Parameters
indicator
IIndicatorIndicator.
Returns
- decimal
The current value.
GetNullableCurrentValue(IIndicator)
To get the current value of the indicator.
public static decimal? GetNullableCurrentValue(this IIndicator indicator)
Parameters
indicator
IIndicatorIndicator.
Returns
- decimal?
The current value.
GetNullableFirstValue(IIndicator)
To get the first value of the indicator.
public static decimal? GetNullableFirstValue(this IIndicator indicator)
Parameters
indicator
IIndicatorIndicator.
Returns
- decimal?
The current value.
GetNullableValue(IIndicator, int)
To get the indicator value by the index (0 - last value).
public static decimal? GetNullableValue(this IIndicator indicator, int index)
Parameters
indicator
IIndicatorIndicator.
index
intThe value index.
Returns
- decimal?
Indicator value.
GetValue(IIndicator, int)
To get the indicator value by the index (0 - last value).
public static decimal GetValue(this IIndicator indicator, int index)
Parameters
indicator
IIndicatorIndicator.
index
intThe value index.
Returns
- decimal
Indicator value.
GetValueType(Type, bool)
Get value type for specified indicator.
public static Type GetValueType(this Type indicatorType, bool isInput)
Parameters
Returns
- Type
Value type.
GetValue<T>(IIndicator, int)
To get the indicator value by the index (0 - last value).
public static T GetValue<T>(this IIndicator indicator, int index)
Parameters
indicator
IIndicatorIndicator.
index
intThe value index.
Returns
- T
Indicator value.
Type Parameters
T
Value type.
IsSupport<T>(IIndicatorValue)
Does value support data type, required for the indicator.
public static bool IsSupport<T>(this IIndicatorValue value)
Parameters
Returns
Type Parameters
T
The data type, operated by indicator.
Process(IIndicator, IIndicatorValue, decimal)
To renew the indicator with numeric value.
public static IIndicatorValue Process(this IIndicator indicator, IIndicatorValue input, decimal value)
Parameters
indicator
IIndicatorIndicator.
input
IIndicatorValuevalue
decimalNumeric value.
Returns
- IIndicatorValue
The new value of the indicator.
Process(IIndicator, ICandleMessage)
To renew the indicator with candle closing price ClosePrice.
public static IIndicatorValue Process(this IIndicator indicator, ICandleMessage candle)
Parameters
indicator
IIndicatorIndicator.
candle
ICandleMessageCandle.
Returns
- IIndicatorValue
The new value of the indicator.
Process(IIndicator, decimal, DateTimeOffset, bool)
To renew the indicator with numeric value.
public static IIndicatorValue Process(this IIndicator indicator, decimal value, DateTimeOffset time, bool isFinal = true)
Parameters
indicator
IIndicatorIndicator.
value
decimalNumeric value.
time
DateTimeOffsetisFinal
boolIs the value final (the indicator finally forms its value and will not be changed in this point of time anymore). Default is true.
Returns
- IIndicatorValue
The new value of the indicator.
Process(IIndicator, object, DateTimeOffset, bool)
To renew the indicator with new value.
public static IIndicatorValue Process(this IIndicator indicator, object inputValue, DateTimeOffset time, bool isFinal)
Parameters
indicator
IIndicatorIndicator.
inputValue
objectInput value.
time
DateTimeOffsetisFinal
bool
Returns
Process<TValue>(IIndicator, Tuple<TValue, TValue>, DateTimeOffset, bool)
To renew the indicator with numeric pair.
public static IIndicatorValue Process<TValue>(this IIndicator indicator, Tuple<TValue, TValue> value, DateTimeOffset time, bool isFinal = true)
Parameters
indicator
IIndicatorIndicator.
value
Tuple<TValue, TValue>The pair of values.
time
DateTimeOffsetisFinal
boolIf the pair final (the indicator finally forms its value and will not be changed in this point of time anymore). Default is true.
Returns
- IIndicatorValue
The new value of the indicator.
Type Parameters
TValue
Value type.
ToCandle(IIndicatorValue)
Convert IIndicatorValue to ICandleMessage.
public static ICandleMessage ToCandle(this IIndicatorValue value)
Parameters
Returns
ToDecimal(IIndicatorValue)
Convert IIndicatorValue to decimal.
public static decimal ToDecimal(this IIndicatorValue value)