Click or drag to resize

BaseTickIndicatorTOfflineComputation Method (Double, Double, DateTime, T)

Performs offline computation using all data for period simultaneously. In some cases can be faster and/or use less memory than online (step-by-step) computation. Note: Indicator cannot be used before and after calling this method.

Namespace:  FinAnalysis.Base
Assembly:  FinAnalysis.Base (in FinAnalysis.Base.dll) Version: 2.1.13-cc97e13414b71fde928e8f3a546ac1daf26f295f
Syntax
C#
public virtual void OfflineComputation(
	double[] trades,
	double[] volumes,
	DateTime[] times,
	T[] updateResults
)

Parameters

trades
Type: SystemDouble
Prices of the ticks.
volumes
Type: SystemDouble
Volumes of the correspondings ticks.
times
Type: SystemDateTime
Times of adding corresponding ticks.
updateResults
Type: T
New values of the indicator.
See Also