Amibroker Coding Help

sr114

Well-Known Member
#4
try this if helps

Code:
strWeekday = StrMid("SunMonTueWedThuFriSat", SelectedValue(DayOfWeek())*3,3);

Title = Name() + "   "+strWeekday+  "-"+ Date() +" "  + "{{INTERVaL}} ";
//...

regards
manoj
It will show only the day of the week - not the last trade day or last day of the month.

rgds
 
#5
It will show only the day of the week - not the last trade day or last day of the month.

rgds

Hi sr114,

I use to plot weekly charts starting instead of Monday to Friday....Tuesday to Monday...as nse has per settlement cycle....is it possible in amibroker?


Regards,
Kedarnath
 

casoni

Well-Known Member
#6
Hi Traderji Seniors
I need a Help on the following condition in amibroker

How to Code the last working day of the month in Amibroker

Thankyou
Hello ,
check this

// by brian_z111
FOM = Month() != Ref(Month(),-1);
Plot(FOM == 0 AND Ref(FOM,1) == 1,"LastDayOfMonth",colorRed,2);

Hope this meets your requirement
 

mastermind007

Well-Known Member
#9

mastermind007

Well-Known Member
#10
Hello ,
check this

// by brian_z111
FOM = Month() != Ref(Month(),-1);
Plot(FOM == 0 AND Ref(FOM,1) == 1,"LastDayOfMonth",colorRed,2);

Hope this meets your requirement
Ref(FOM, 1) ---- is a reference that looks into Future..
 

Similar threads