API documentation
PersonalInstrumentModel
Personal watchlist row pushed on PersonalInstrumentsListUpdated
Fields
| PersonalInstrumentModel | Type | Description | Example value |
|---|---|---|---|
| Id | string | "42" | |
| Type | string | "Forex" | |
| Symbol | string | "EURUSD" | |
| IconName | string | "eurusd" | |
| Description | string | "Euro / US Dollar" |
Example JSON
{
"id": "42",
"type": "Forex",
"symbol": "EURUSD",
"iconName": "eurusd",
"description": "Euro / US Dollar"
}Related TypeScript contracts
/// <summary>
/// Personal watchlist row pushed on PersonalInstrumentsListUpdated
/// </summary>
public class PersonalInstrumentModel
{
public string Id { get; set; }
public string Type { get; set; }
public string Symbol { get; set; }
public string IconName { get; set; }
public string Description { get; set; }
}