Click or drag to resize

DomScriptBaseOnHistoricalData Method

Invoked when the GetHistoricalData(BuiltDataType, BackfillPolicy, DateTime, DateTime) method is called, subject to availibility (of data)

Namespace: ArthaChitra.Model.Dom
Assembly: ArthaChitra.Core (in ArthaChitra.Core.dll) Version: 2.0.7.0
Syntax
C#
protected virtual void OnHistoricalData(
	BuiltDataType builtDataType,
	DateTime time,
	double open,
	double high,
	double low,
	double close,
	double bid,
	double ask,
	double volume,
	double oi
)

Parameters

builtDataType  BuiltDataType
BuiltDataType
time  DateTime
Time stampt
open  Double
Open
high  Double
High
low  Double
Low
close  Double
Close
bid  Double
Bid price. Supported for Tick data type only
ask  Double
Ask price. Supported for Tick data type only
volume  Double
Volume
oi  Double
Open Interest. Supported on Day data type only
See Also