Dynamic List Indirect Binding

Is it possible to create a object of indirectly bound properties progamatically.
Say I have a list of tag paths that I want to indirectly bind to
[
“[default]Edge Nodes/custom/status/status1”,
“[default]Edge Nodes/custom/status/status2”,
“[default]Edge Nodes/status/status3”
]
In order to create a Object of indirectly bound tags
{
“status1”:213,
“status2”:12,
“status3”:154
}

I want to use the value changes to trigger decoding of bits.

The only method I know of so far it to use a flex repeater with views which pass back the value of the indirectly bound status tags.

The method above works but is there a more elegant method?