You will need to create your own EWMA column. The function, Simple Exponential Smoothing() should be able to give you the EWMA you need. You will also have to create an X column based upon the row number. Below is a simple example.
Graph Builder(
Size( 723, 578 ),
Variables(
X( Transform Column( "Row", Formula( Row() ) ) ),
Y(
Transform Column(
"EWMA",
Formula( Col Simple Exponential Smoothing( :height, 0.1 ) )
)
),
Overlay( :sex )
),
Elements( Points( X, Y, Legend( 6 ) ), Line( X, Y, Legend( 8 ) ) )
)
Jim