No problem logging one market, but I didn´t find the way to log more than one market into the same sheet, (newbbie using com).
- Code: Select all
Private Sub ba_pricesUpdated()
prices = ba.getPrices
i = 4
For Each priceItem In prices
i = i + 1
Cells(i, 1).Value = priceItem.Selection
Cells(i, 2).Value = priceItem.backOdds1
Cells(i, 3).Value = priceItem.layOdds1
Next
End Sub
(I am using the test_BA example spreadsheet from the help)