[amibroker] rotational trading buying time

2010-03-20 Thread donald_brown_48367
I have a rotational system that rotates at the beginnning of each month using this code; m = Month(); newMonth = m != Ref( m, -1); PositionScore = IIf(PositionScore 0, 0, PositionScore); // Long only PositionScore = IIf(newMonth, PositionScore, scoreNoRotate); Is there an easy way of changing

Re: [amibroker] rotational trading buying time

2010-03-20 Thread Howard B
Hi Donald -- Does something like this work for you? TradingDay = 15; dn = Day(); newMonth = (dn=TradingDay) (Ref(dn,-1)TradingDay); Thanks, Howard On Sat, Mar 20, 2010 at 7:36 AM, donald_brown_48367 donald_brown_48...@yahoo.com wrote: I have a rotational system that rotates at the