PureBytes Links
Trading Reference Links
|
Howdy Gordon,
HHBars == 0 will return the date of the higest high since your condition.
Regards,
GaryGordon Sutherland <gosuth@xxxxxxxxxx> wrote:
Hello All,I am working on creating some statistics for my Interpretation Window. I amstruggling with the coding to be able to display the date when the undermentioned LLV's occur.This Section works:// Commentary for Interpretation Window (LLV Statistics) LLV_Bars = LLVBars(C,65); LLV_Close = LLV(C,65); LLV_Off_C = ((C-LLV_Close)/LLV_Close)*100; "Bars Since LLV65 Close " + WriteVal(LLV_Bars ,1.0); "Close on LLV65 " + WriteVal(LLV_Close ,1.2); "Close% Off LLV65_C " + WriteVal(LLV_Off_C,1.1) + "%";// This is the Section to display the date that I can't get to work - itreturns the current
// date: HHBars = HighestSinceBars(BarIndex()==BarCount-1-100,H); HHV65_date = ValueWhen(HHBars,DateTime(),1)+1;"Date on HHV " + WriteVal(HHV65_date,formatDateTime);Any help would be appreciated.Regards,Gordon SutherlandCheck AmiBroker web page at:http://www.amibroker.com/Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Do you Yahoo!?
New and Improved Yahoo! Mail - 100MB free storage!
Check AmiBroker web page at:
http://www.amibroker.com/
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups Sponsor
ADVERTISEMENT
Yahoo! Groups Links
To visit your group on the web, go to:http://groups.yahoo.com/group/amibroker/
To unsubscribe from this group, send an email to:amibroker-unsubscribe@xxxxxxxxxxxxxxx
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
|