fix: open positions table now matches MT5 HTML report columns
mt5_parser.py: - parse_open_positions: added market_price, swap, profit, comment columns to match all 11 columns in MT5 HTML Open Positions table view_live_mt5_eas.py: - Open positions table columns updated to match MT5 report order: Account, Time, Position, Symbol, Type, Volume, Price, S/L, T/P, Market Price, Swap, Profit, Comment
This commit is contained in:
+20
-24
@@ -683,35 +683,31 @@ cache/
|
||||
|
||||
if _all_open:
|
||||
open_df = pd.concat(_all_open, ignore_index=True)
|
||||
|
||||
# Show all available columns in a logical order with friendly names
|
||||
col_order = ["_account","position","symbol","symbol_base","type",
|
||||
"volume","open_time","open_price","sl","tp","status"]
|
||||
col_order = ["_account","open_time","position","symbol","type","volume",
|
||||
"open_price","sl","tp","market_price","swap","profit","comment"]
|
||||
show_cols = [c for c in col_order if c in open_df.columns]
|
||||
# Also append any unexpected extra columns the parser may return
|
||||
show_cols += [c for c in open_df.columns if c not in show_cols]
|
||||
|
||||
rename_map = {
|
||||
"_account" : "Account",
|
||||
"position" : "Position",
|
||||
"symbol" : "Symbol",
|
||||
"symbol_base": "Base",
|
||||
"type" : "Type",
|
||||
"volume" : "Lots",
|
||||
"open_time" : "Open Time",
|
||||
"open_price": "Open Price",
|
||||
"sl" : "SL",
|
||||
"tp" : "TP",
|
||||
"status" : "Status",
|
||||
"_account" : "Account",
|
||||
"open_time" : "Time",
|
||||
"position" : "Position",
|
||||
"symbol" : "Symbol",
|
||||
"type" : "Type",
|
||||
"volume" : "Volume",
|
||||
"open_price" : "Price",
|
||||
"sl" : "S/L",
|
||||
"tp" : "T/P",
|
||||
"market_price": "Market Price",
|
||||
"swap" : "Swap",
|
||||
"profit" : "Profit",
|
||||
"comment" : "Comment",
|
||||
}
|
||||
disp_df = open_df[show_cols].rename(columns=rename_map)
|
||||
if "Open Time" in disp_df.columns:
|
||||
disp_df["Open Time"] = pd.to_datetime(
|
||||
disp_df["Open Time"], errors="coerce"
|
||||
disp = open_df[show_cols].rename(columns=rename_map).copy()
|
||||
if "Time" in disp.columns:
|
||||
disp["Time"] = pd.to_datetime(
|
||||
disp["Time"], errors="coerce"
|
||||
).dt.strftime("%d.%m.%Y %H:%M")
|
||||
|
||||
with st.expander(f"🔴 Open Positions ({len(open_df)})", expanded=True):
|
||||
st.dataframe(disp_df, use_container_width=True, hide_index=True)
|
||||
st.dataframe(disp, use_container_width=True, hide_index=True)
|
||||
else:
|
||||
st.caption("No open positions in current reports.")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user