Hello,
Using Function, I get close values of
Last Thursday of month and First Friday of month. Now, I need to get the Highest
value between those 2 days. I tried a lot of things, but nothing gives the
output correctly.
Any help much
appreciated.
AFL currently used
function
Lastthursday() { Daysinmonth=IIf(Month()==1 OR Month()==3 OR
Month()==5 OR Month()==7 OR Month()==8 OR Month()==10 OR
Month()==12,31,30); Daysinmonthfeb=IIf(Year()%4 == 0 AND
Year()%100!=0,29,28); Daysinmonthfinal=IIf(Month()==2,Daysinmonthfeb,Daysinmonth); returnvalue=IIf(Daysinmonthfinal-Day()<7
AND DayOfWeek()==4,C,0); return returnvalue; }
function
Firstfriday() { Daysinmonth=IIf(Month()==1 OR Month()==3 OR
Month()==5 OR Month()==7 OR Month()==8 OR Month()==10 OR
Month()==12,31,30); Daysinmonthfeb=IIf(Year()%4 == 0 AND
Year()%100!=0,29,28); Daysinmonthfinal=IIf(Month()==2,Daysinmonthfeb,Daysinmonth); Freturnvalue=IIf(Daysinmonthfinal-Day()>24
AND DayOfWeek()==5,C,0); return Freturnvalue; }
Regards
Prashanth
__._,_.___
Please note that this group is for discussion between users only.
To get 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
__,_._,___
|