AlphaVantageDataProviderParseStringData Method |
LightningChart .NET Help
Parses the data string read from the provider.
Namespace:
Arction.CustomControls.Trader.WinForms.DataProviders
Assembly:
Arction.WinForms.TradingCharts (in Arction.WinForms.TradingCharts.dll) Version: 10.3.1
Syntaxpublic override DataParseStatus ParseStringData(
string data,
out OhlcData[] ohlcData,
out string errorMessage,
out IntradayInfo intradayInfo
)
Public Overrides Function ParseStringData (
data As String,
<OutAttribute> ByRef ohlcData As OhlcData(),
<OutAttribute> ByRef errorMessage As String,
<OutAttribute> ByRef intradayInfo As IntradayInfo
) As DataParseStatus
public:
virtual DataParseStatus ParseStringData(
String^ data,
[OutAttribute] array<OhlcData>^% ohlcData,
[OutAttribute] String^% errorMessage,
[OutAttribute] IntradayInfo^% intradayInfo
) override
Parameters
- data
- Type: SystemString
Data string to be parsed - ohlcData
- Type: Arction.CustomControls.Trader.WinFormsOhlcData
OHLC data read from the data string - errorMessage
- Type: SystemString
Error message to be displayed if parsing fails. - intradayInfo
- Type: Arction.CustomControls.Trader.WinFormsIntradayInfo
Info about the Security
Return Value
Type:
DataParseStatusHas data parsing succeeded.
See Also