PureBytes Links
Trading Reference Links
|
Mike,
Thank you for the help. I am going to try your sample and see if I can
get it to work. Thanks again.
DM
--- In amibroker@xxxxxxxxxxxxxxx, "Mike" <sfclimbers@xxx> wrote:
>
> What about something like this (disallows buys during blackout, forces
> sells during blackout):
>
> May = 5;
> MayCutoff = 15;
> October = 10;
> OctoberCutoff = 15;
>
> MonthOfYear = Month();
> DayOfMonth = Day();
> Blackout = IIf(MonthOfYear == May, DayOfMonth >= MayCutoff,
> IIf(MonthOfYear == October, DayOfMonth < OctoberCutoff, MonthOfYear >
> May && MonthOfYear < October));
>
> Buy = ... AND Not Blackout;
> Sell = Blackout OR ...;
>
> Mike
>
> --- In amibroker@xxxxxxxxxxxxxxx, "dmcleod1981" <dmcleod1981@>
> wrote:
> >
> > I am trying to do some Traders Almanac like calendar comparisons and
> > want to block out certain date periods like sell every May 15th and
> > re-buy every October 15th. I can see how to block a specific date
> but
> > how do I block out a range of dates?
> >
> > Thanks
> > DM
> >
>
------------------------------------
**** IMPORTANT ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
*********************
TO GET TECHNICAL SUPPORT from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
*********************
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
For other support material please check also:
http://www.amibroker.com/support.html
*********************************
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|