Click or drag to resize

BaseTickPortfolioIndicatorTAdd Method

Overload List
  NameDescription
Public methodAdd(Double, Double)
Add multiple data (trade prices and volumes for all series) to indicator. Note: Do Not use methods with and without DateTime for same instance. Also do not call this method for indicators which need datetime for calculation it's value. To determine do you need to specify DateTime, see IndicatorNeedDateTime flag.
Public methodAdd(Double, Double, DateTime)
Add multiple data (trade prices, volumes for all series and DateTime) to indicator. Note: Do Not use methods with and without DateTime for same instance. Note: if you specify time = DefaultTime then method ignore this parameter and call add with out time. To determine do you need to specify DateTime, see IndicatorNeedDateTime flag.
Public methodAdd(Int32, Double, Double)
Add single data (trade price and volume for specific series) to indicator. Note: Do Not use methods with and without DateTime for same instance. Also do not call this method for indicators which need datetime for calculation it's value. To determine do you need to specify DateTime, see IndicatorNeedDateTime flag.
Public methodAdd(Int32, Double, Double, DateTime)
Add single data (trade price, volume for specific series and DateTime) to indicator. Note: Do Not use methods with and without DateTime for same instance. Note: if you specify time = DefaultTime then method ignore this parameter and call add with out time. To determine do you need to specify DateTime, see IndicatorNeedDateTime flag.
Top
See Also