Just to let you know and to document something could be useful for others who want to clone totally or partially what I’m doing
…if someone have advise… please 
I can do the entire setup in 10 minutes with command and shell.
I’m not getting the info regarding the Solar Production from Fronius, that is visible but not connected to Victron Multi II GX. (or at least I have not found info on Node-Red out-of-the-box).
I use this api-call:
http://192.168.1.39/solar_api/v1/GetMeterRealtimeData.cgi?Scope=System
(I do not care regarding IP, I do not mask it)
it give me the “Export to grid” value, that is what is interesting to me, the same Diederik is calculating on the first stage.
Result:
{
“Body” : {
“Data” : {
“0” : {
“Current_AC_Phase_1” : 6.3849999999999998,
“Current_AC_Phase_2” : 6.1100000000000003,
“Current_AC_Phase_3” : 8.7330000000000005,
“Details” : {
“Manufacturer” : “Fronius”,
“Model” : “Smart Meter 63A”,
“Serial” : “17390033”
},
“Enable” : 1,
“EnergyReactive_VArAC_Sum_Consumed” : 99950,
“EnergyReactive_VArAC_Sum_Produced” : 386209160,
“EnergyReal_WAC_Minus_Absolute” : 21421969,
“EnergyReal_WAC_Plus_Absolute” : 99573461,
“EnergyReal_WAC_Sum_Consumed” : 99573461,
“EnergyReal_WAC_Sum_Produced” : 21421969,
“Frequency_Phase_Average” : 50,
“Meter_Location_Current” : 0,
“PowerApparent_S_Phase_1” : 1561.771,
“PowerApparent_S_Phase_2” : 1470.066,
“PowerApparent_S_Phase_3” : 2056.6215000000002,
“PowerApparent_S_Sum” : 1204,
“PowerFactor_Phase_1” : -0.98999999999999999,
“PowerFactor_Phase_2” : -0.98999999999999999,
“PowerFactor_Phase_3” : 0.96999999999999997,
“PowerFactor_Sum” : -0.81000000000000005,
“PowerReactive_Q_Phase_1” : -48.460000000000001,
“PowerReactive_Q_Phase_2” : -191.27000000000001,
“PowerReactive_Q_Phase_3” : -463.50999999999999,
“PowerReactive_Q_Sum” : -703.24000000000001,
“PowerReal_P_Phase_1” : -1527.02,
“PowerReal_P_Phase_2” : -1428.55,
“PowerReal_P_Phase_3” : 1977.4000000000001,
“PowerReal_P_Sum” : -978.16999999999996,
“TimeStamp” : 1745402138,
“Visible” : 1,
“Voltage_AC_PhaseToPhase_12” : 420.19999999999999,
“Voltage_AC_PhaseToPhase_23” : 412.30000000000001,
“Voltage_AC_PhaseToPhase_31” : 415.80000000000001,
“Voltage_AC_Phase_1” : 244.59999999999999,
“Voltage_AC_Phase_2” : 240.59999999999999,
“Voltage_AC_Phase_3” : 235.5
}
}
},
“Head” : {
“RequestArguments” : {
“DeviceClass” : “Meter”,
“Scope” : “System”
},
“Status” : {
“Code” : 0,
“Reason” : “”,
“UserMessage” : “”
},
“Timestamp” : “2025-04-23T11:55:38+02:00”
}
}
I need this:
PowerReal_P_Sum (+ positive) consuming from grid producing power
PowerReal_P_Sum (- negative) feeding in to grid normal consumption
The “negative” value will drive the Power, as lower (in negative) it is, as higher the Power will be, value in Watt.
Consider I have used Node-Red today for the first time… I’m at this stage, let’s say… I’m on the starting block…
Update will follow. (or maybe requests?)