I have a SuperDOM column where I have an 'OnBarsUpdate' handler based on the following:
BarsPeriod bp = new BarsPeriod
{
MarketDataType = MarketDataType.Last,
BarsPeriodType = BarsPeriodType.Tick,
Value = 1
};
BarsRequest = new BarsRequest(SuperDom.Instrument, .....
BarsRequest.BarsPeriod = bp;
BarsRequest.Update += OnBarsUpdate;
BarsRequest.Request((request, errorCode, errorMessage) =>
{
...
private void OnBarsUpdate(object sender, BarsUpdateEventArgs e)
{
...
[COLOR=#27ae60]// I can get the close, ask, bid [I]prices [/I]from the BarsUpdateEventArgs [/COLOR]
What I'm looking for are handlers where I can receive:
- Bid / Ask sizes
- Level II updates
Thanks for your help!

Comment