Setting in profit targets on open transactions

myCoverCondition = Close < openingPrice * 0.999;
anyone know how to write this as transaciton price open plus 1 dollar change instead of 1% change?

You can use any arithmetic operation in expressions:

myCoverCondition = Close < openingPrice + 1;