Click or drag to resize

TradingChartGetOhlcDataFromFile Method

LightningChart .NET Help
Converts CSV formatted data into OHLC data. Requires data to have the following columns: Date / Time, Open, High, Low, Close. Can have two optional columns: Volume, OpenInterest.

Namespace:  Arction.CustomControls.Trader.WPF
Assembly:  Arction.Wpf.TradingCharts (in Arction.Wpf.TradingCharts.dll) Version: 10.3.1
Syntax
public OhlcData[] GetOhlcDataFromFile(
	string fileName,
	char delimiter = ','
)

Parameters

fileName
Type: SystemString
The path and the name of the file
delimiter (Optional)
Type: SystemChar
Character used as to separate the entries. Comma by default.

Return Value

Type: OhlcData
OHLC data array
See Also