When optimising a strategy such as below against a watchlist…
MAPeriod = Optimize( "MA Period", 10, 10, 40, 10 );
MAValue = MA( Close, MAPeriod );
Buy = Cross( Close, MAValue );
Sell = Cross( MAValue, Close );
Short = Cross( MAValue, Close );
Cover = Cross( Close, MAValue );
StopLossValue = Optimize( "Stop Loss", 10, 5, 20, 5 );
ApplyStop( stopTypeLoss, stopModePercent, StopLossValue, True );
Is it possible to generate a chart containing an equity line for each MA period value, with a Y axis displaying the equity and the x-axis the stop loss values?