There's good news and even better news.
The good news is that SGDK2 is quite open-ended compared to version 1.x with respect to drawing graphics on the screen because all the code that does actual drawing is customizable (exposed in the SourceCode folder) and it's all based on Managed DirectX, so if you can find any C# code that draws graphics on the screen, you can probably import it in some form into your project without having to modify SGDK2 itself.
The even better news is that I think you can already do this. I think there is a way to draw that graphic using existing rule functions. The DrawCounterAsTile function should have a mode where it can draw a piece of a graphic based on a counter value so you could do this:
1. Define a graphic (tile) that looks like an empty version of the status indicator
2. Define a graphic (tile) that looks like the filled content of the status indicator
3. Call DrawCounterAsTile using a full counter to draw the complete empty status indicator (outline)
4. Call DrawCounterAsTile using an actual counter value to draw a portion of the filled content of the status indicator in the same place.
I'm not sure which mode to use for DrawCounterAsTile, but one of them should be able to draw the tile clipped according to the counter value, which is exactly what you want. You could draw as many of these indicators as you like, overlapped and positioned however you like, and if it's not possible, then there's something missing in my design. So if it's not possible to do this, I should update the code so that things like this are possible.