If you mean backtest or optimization speed then this could help...
if ( Status( "action" ) == actionIndicator )
{
Plot(Foreign("ZZZZ", "Close")/Foreign(XYZ", "Close"), "ZZZZ/ZYX Ratio",
colorGreen);
//all of your plots, plotshapes and calculations specific to plotting...
.
.
.
}
--- In [email protected], "potatosoupz" <potatoso...@...> wrote:
>
> Plot(Foreign("ZZZZ", "Close")/Foreign(XYZ", "Close"), "ZZZZ/ZYX Ratio",
> colorGreen);
>
> I have a few of these and they seem to be slowing down the whole app. Is that
> possible?
>