Making 1 m cut over max/min moments

Hello

I am moving my loads around, and i have to make cuts manually each time, because the placement of max/min moments is different each time.
Is there a simple line of code that just places a cut over max/min when im pulling my moments plots from the cdb? Below is the code i use to pull moment plots from my cdb file.

#define project=…\Output\pl12_sls_edge

PROG WING urs:1 $ MAX MXX for report
HEAD
UNIT 0 SET IN $ default unit set
CTRL OPT GSTR VAL DEFA
CTRL OPT REPR VAL YES

CTRL OPT AXIS VAL DEFA
PAGE LANO 1
SIZE TYPE URS SC 0 MARG NO
SIZ2
AND POSI 1 POSL 0 POSR 100 POSD 0 POSU 100
SCHH H6 -0.160000 H8 0.6
SCH2 DIRE DEFA
FILL TYPE ISOL NUMB 20 MODE ‘-’ DMOD RDEF
LC NO 90901 DESI 1
GRP NUMB 0 YES GLN
GRP NUMB 1 YES QUAD,GAR
GRP NUMB 2 OFF
GRP NUMB 3 YES SPRI
GRP NUMB ASTR OPTI OFFL
VIEW TYPE DIRE X 0 Y 0 Z -1 AXIS NEGY ROTA 0
DEFO TYPE NO EXPO 0 SMOV NO
SELE NUMB 0
QUAD TYPE MX UNIT DEFA SCHH NO STYP NODE FILL AREA REPR DISO AVER NO
END

It is possible, but not with simple line of code. Actually it is quite complex exersise.
You have to access CDB via @KEY to find quad with max/min moments, then find node coordinates of this element to define its position (f.e. mean of carstesian node coordinates) and once you have you can draw a cut at defined distance.
There is also one more thing, if you want cut to be in local quad coordinate system which is not the same as global one you have to access elements orientation and modify your cut definiotion.
Unfortunatly I never have done anything similar with quad elements and dont have any code to paste.

Thank you for the reply.