Yeah yeah ;-)
Stop and LifeTime aside, there is clearly something here that I fail to understand.

Repeating myself; When reading about AssetMarket in the manual, it states:

"Time zone of the currently selected asset, used for setting AssetFrame to a TimeFrame that skips all bars outside market hours in local time, but follows the BarPeriod inside market hours. The market hours are given by StartMarket and EndMarket."

Like you said, there is an example of how to skip bars in the manual. At least I can find one here: http://www.zorro-trader.com/manual/en/barperiod.htm

This is what it says
Code:
// skip bars outside market hours (equivalent to AssetMarket) //////
// equivalent to AssetZone
static int SkippedBars = 0;
if(!market(ET,0)) {
   TimeFrame = 0;
   SkippedBars--; // count negative number of bars outside market hours
} else if(TimeFrame == 0) {
   TimeFrame = SkippedBars;
   SkippedBars = 0;
} else
  TimeFrame = 1;
vars PriceInMarketHours = series(price());



I don't understand how what this snippet and AssetMarket have in common?