Daily increasing with Solar net energy sensors

Ahoy!
I am in the process of setting up meters using a multi-channel esphome energy sensor (flashed Emporia Vue 2). I currently have 200A sensors on the house mains, and 60A sensors on the solar.

At peak during the day, the house mains go negative, in the spring, very negative, like about -10kW.
During the night, the solar lines go negative, maybe 2 or 3 watts, which goes into the communications cards in the solar inverter.

I know that getting things to be accurate may be a bit of a fools errand, but what should I be setting the energy sensors to? I was able to easily set the basic power sensors so they correctly show positive and negative values, but the daily energy sensors are flagged as “total_increasing” by default and I don’t see a way to change it, nor do I even know what is correct? If it doesn’t always increase, will HA’s energy dashboard get confused? Will data get lost?

Thanks!

Do I have any choice besides setting up separate meters like this?

  - platform: template
    name: "Total House Power"
    lambda: return id(phase_a_power).state + id(phase_b_power).state;
    update_interval: 1s
    id: total_house_power
    unit_of_measurement: "W"
  - platform: template
    name: "House Power From Grid"
    lambda: return max(id(total_house_power).state, 0.0f);
    update_interval: 1s
    id: total_house_from_grid
    unit_of_measurement: "W"
  - platform: template
    name: "House Power To Grid"
    lambda: return max(-id(total_house_power).state, 0.0f);
    update_interval: 1s
    id: total_house_to_grid
    unit_of_measurement: "W"
  - platform: total_daily_energy
    name: "House Energy From Grid"
    power_id: total_house_from_grid
    accuracy_decimals: 0
  - platform: total_daily_energy
    name: "House Energy To Grid"
    power_id: total_house_to_grid
    accuracy_decimals: 0