Hi,
I would like to try to tes an option strategy with stop loss.
But when I have multple contracts, how to set the stop that from my understanding is per asset and not per contract ?
And how to set the stop with the ATR of the contractPrice , in the snippet below ?
Any help appreciated.
Thanks
Vincenzo

CONTRACT* CallLong = contract(PUT,DTE,Close[0] + spread);
CONTRACT* CallShort = contract(PUT,DTE,Close[0] - spread);


if(!(NumOpenLong + NumOpenShort) && CallLong && CallShort && !is(LOOKBACK) )
{
contract(CallLong);
enterShort();
contract(CallShort);
enterShort();
}