Class IndicatorsPrice
Collection of price indicators.
Inheritance
object
IndicatorsPrice
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: TuringTrader.Indicators
Assembly: TuringTrader.Simulator.dll
Syntax
public static class IndicatorsPrice
Methods
| Improve this Doc View SourceCLV(Instrument, CacheId, string, int)
CLV factor as described here: https://en.wikipedia.org/wiki/Accumulation/distribution_index
Declaration
public static ITimeSeries<double> CLV(this Instrument series, CacheId parentId = null, string memberName = "", int lineNumber = 0)
Parameters
Type | Name | Description |
---|---|---|
Instrument | series | input time series |
CacheId | parentId | caller cache id, optional |
string | memberName | caller's member name, optional |
int | lineNumber | caller line number, optional |
Returns
Type | Description |
---|---|
ITimeSeries<double> | CLV as time series |
TypicalPrice(Instrument, CacheId, string, int)
Calculate Typical Price as described here: https://en.wikipedia.org/wiki/Typical_price
Declaration
public static ITimeSeries<double> TypicalPrice(this Instrument series, CacheId parentId = null, string memberName = "", int lineNumber = 0)
Parameters
Type | Name | Description |
---|---|---|
Instrument | series | input instrument |
CacheId | parentId | caller cache id, optional |
string | memberName | caller's member name, optional |
int | lineNumber | caller line number, optional |
Returns
Type | Description |
---|---|
ITimeSeries<double> | typical price as time series |