The EFS
Announcement
Collapse
No announcement yet.
Weekly Pivot Problem
Collapse
X
-
Hello
I’ve been using this EFS the PivotPointAllweekly.efs for sometime, I had a feeling something was wrong with it so I wanted to know what HIGH, LOW, CLOSE the EFS is using. To my surprise if I’m not mistaken it’s using the HIGH, LOW, and CLOSE of two weeks not last week.
I Added 3 trendline to the efs to see HIGH, LOW and CLOSE
How can I get the HIGH, LOW, and CLOSE of last week?
Attached below is the EFS
Thank you very much
KetomaLast edited by ketoma21; 02-21-2005, 11:58 AM.
-
Hello Ketoma,
Looking at this formula today, it appears to be returning the correct results. I think the problem may have something to do with running the formula on a holiday. Is the formula giving you the correct results today?
To help you verify that the formula is using last week's high, low and close add the following lines starting at line 109. Then compare the information based on the bar index to a weekly chart of AAPL.
PHP Code:debugPrintln(getCurrentBarIndex() + " last week's High: " + vH);
debugPrintln(getCurrentBarIndex() + " last week's Low: " + vL);
debugPrintln(getCurrentBarIndex() + " last week's Close: " + vC);
Jason K.
Project Manager
eSignal - an Interactive Data company
EFS KnowledgeBase
JavaScript for EFS Video Series
EFS Beginner Tutorial Series
EFS Glossary
Custom EFS Development Policy
New User Orientation
Comment
Comment