TradingChartSetSecurityInfo Method |
LightningChart .NET Help
Manually updates the security information.
Namespace:
Arction.CustomControls.Trader.WinForms
Assembly:
Arction.WinForms.TradingCharts (in Arction.WinForms.TradingCharts.dll) Version: 10.3.1
Syntaxpublic void SetSecurityInfo(
string securityName,
string symbol,
string currency,
string exchangeLongName = "",
string exchangeShortName = "",
double price = 0,
string region = "",
string type = "",
string timeZone = "",
bool updateTitle = true
)
Public Sub SetSecurityInfo (
securityName As String,
symbol As String,
currency As String,
Optional exchangeLongName As String = "",
Optional exchangeShortName As String = "",
Optional price As Double = 0,
Optional region As String = "",
Optional type As String = "",
Optional timeZone As String = "",
Optional updateTitle As Boolean = true
)
public:
void SetSecurityInfo(
String^ securityName,
String^ symbol,
String^ currency,
String^ exchangeLongName = L"",
String^ exchangeShortName = L"",
double price = 0,
String^ region = L"",
String^ type = L"",
String^ timeZone = L"",
bool updateTitle = true
)
Parameters
- securityName
- Type: SystemString
The name of the security - symbol
- Type: SystemString
Symbol of the security. This also changes the Symbol -property used by OpenSymbol method. - currency
- Type: SystemString
Currency - exchangeLongName (Optional)
- Type: SystemString
Full name of the stock exchange - exchangeShortName (Optional)
- Type: SystemString
Abbreviation for the stock exchange - price (Optional)
- Type: SystemDouble
Current price of the security - region (Optional)
- Type: SystemString
Country, city etc. in which the exchange is located. - type (Optional)
- Type: SystemString
Type of the security e.g. equity - timeZone (Optional)
- Type: SystemString
Time zone of the exchange - updateTitle (Optional)
- Type: SystemBoolean
If set true, automatically updates the chart title with the given information
See Also