Store the price at 9:30 in a variable, then compare with the current price.

static var PriceAt930;
if(tod() == 930) PriceAt930 = priceClose();
if(tod() > 930 && priceClose() - PriceAt930 > MyLevel) { do something... }