+91-0000000000

}

Monday – Friday : 9:00 AM – 6:30 PM

Lastthursday

Lastthursday AFL likely denotes a specific trading strategy designed for particular market scenarios. Leveraging AmiBroker AFL capabilities and data feed, it assists traders in making data-driven decisions aligned with market dynamics.

/ 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,1,0);
 return returnvalue;
}
Graph0=Close;
shape=IIf(Lastthursday(),shapeDownArrow,shapeNone);
PlotShapes(shape,colorWhite,0,Graph0,-24);

Open chat
1
Hi, how can I help you?