function run() {
if (is(INITRUN)) {
BarPeriod = 60;
Weekend = 1;
LookBack = 1001;
StartDate = 20080101;
EndDate = 20150301;
NumWFOCycles = 169;
}
vars Price = series(price());
var uo400 = UO(Price, 400);
if (Bar == 41712 && !is(LOOKBACK)) {
print(
TO_ANY,
strf("\nAt bar %d in Cycle %d UO400=%f.", Bar, WFOCycle, uo400));
}
}