
DTN_Tim Walter
-DTN Guru-
Posts: 294
Joined: Apr 25, 2006
|
Posted: Mar 26, 2009 12:34 PM

Msg. 1 of 3
It appears there was an error in the post, but I did get this question via my email.
how do you write and indicator that takes the highest high of the previous 3 days and then add it to today's open?
And to answer your question, you need need to create a custom study with the following function and then drag and drop this onto any chart for it to populate.
* Note:You could replace SERIES, with a specific symbol if you wanted this on a quotesheet.
HIGHEST (SERIES, 3) + SERIES
Let us know if you have any questions,
Tim
|

DTN_Tim Walter
-DTN Guru-
Posts: 294
Joined: Apr 25, 2006
|
Posted: Mar 26, 2009 12:38 PM

Msg. 2 of 3
Excuse me, there is a mistake there.
HIGHEST (SERIES, 3) + OPEN(SERIES) is correct to your need.
|