Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    1. COThanks, osknows. My first reactions are to your suggestions 1 and 6. First a little background: the transactions are option trades. Reading them takes a fair bit of processing, because they come from different sources with eg different sign conventions and units. And because some features have to be computed. I read each trade into an Option-Deal object. I then compile the deals into several different (overlapping) portfolios--trading desk, trading book (under a desk), underlying type, etc. The user selects a particular portfolio from all the combinations. A portfolio is much smaller than...
      singulars
    2. COthe set of trades underlying it, in memory consumption. Oh and Option-Portfolio is another object. The first thing that occurs to me is that maybe I could output the portfolio data to a sheet, and just read that instead of re-reading all the trades. The difficulty with that is creating a lot of code to export and import as text. (Would this be "serializing" an object in C#? Which presumably VBA can't do?) Aside from exporting and importing text (and maybe serializing), I don't know what else suggestion 4 would mean for this problem--?
      singulars
    3. COOh and as far as the filtering and reading go--I iterate through rows of the trade log one at a time, reading text, and then doing various processing in the code. The "filtering" right now is done primarily just by picking a key from a Dictionary that contains all the portfolio objects (where the key matches the fields the user chooses in the combo boxes). I mean to developing more filtering at the level where the Trade objects are added to the Portfolio objects. This would entail, while For/Each looping through the Dictionary of Deal objects, applying conditionals to the deal properties...
      singulars
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload