MarketStackDataProviderGetDataForRange Method |
LightningChart .NET Help
Get data for date time range
Namespace:
Arction.CustomControls.Trader.WinForms.DataProviders
Assembly:
Arction.WinForms.TradingCharts (in Arction.WinForms.TradingCharts.dll) Version: 10.3.1
Syntaxpublic override DataFetchStatus GetDataForRange(
string symbol,
DateTime begin,
DateTime end,
out OhlcData[] ohlcData,
out string errorMessage
)
Public Overrides Function GetDataForRange (
symbol As String,
begin As DateTime,
end As DateTime,
<OutAttribute> ByRef ohlcData As OhlcData(),
<OutAttribute> ByRef errorMessage As String
) As DataFetchStatus
public:
virtual DataFetchStatus GetDataForRange(
String^ symbol,
DateTime begin,
DateTime end,
[OutAttribute] array<OhlcData>^% ohlcData,
[OutAttribute] String^% errorMessage
) override
Parameters
- symbol
- Type: SystemString
Symbol whose data is to be retrieved - begin
- Type: SystemDateTime
Begin datetime - end
- Type: SystemDateTime
End datetime - ohlcData
- Type: Arction.CustomControls.Trader.WinFormsOhlcData
Output OHLC data - errorMessage
- Type: SystemString
Error message
Return Value
Type:
DataFetchStatusData fetch status
See Also