OmniTrader Forum
-
OmniTrader 2016 Technical Support
Data Lost a Year |
^ Top | ||
Jim Dean![]() Posts: 3022 Joined: 9/21/2006 Location: L'ville, GA ![]() | Removed the post since the error was NOT related to OT/VT, etc. BarHour() DOES work properly. Sorry about the misunderstanding. I had a coding error ... the BarDates indicator should have included the "+.5" shown below. That removes the problem. Again, sorry! #Indicator ' Plot+return dates for each bar as YyMmDd dim BarYmd as integer BarYmd=(int(frac(baryear()/100)*100+.5)*100 _ +barmonth())*100 +bardayofmonth() plot("Ymd",BarYmd, silver) plotlabel(140000) plotlabel(150000) plotlabel(160000) plotlabel(170000) Return BarYmd | |
^ Top | ||
mholstius![]() Posts: 175 Joined: 1/13/2017 ![]() | Thanks for your hard work tracking this down and letting us know about it! I use baryear(), and it's good to know. Excellent work, Mark | |
^ Top | ||
Jim Dean![]() Posts: 3022 Joined: 9/21/2006 Location: L'ville, GA ![]() | Mark Apologies to all, esp Barry who patiently asked questions, until I figured it out ... the issue was an error related to conversion from floating point to integer. Please see the info in my revision to the original post. Other posts have been deleted. |