Stock Technical Analysis Question 
Author Message
 Stock Technical Analysis Question

Got a question for you programmers that work with stock technical analysis.

If each point on the graph represents the stock's closing price of the day,
to determine a UP trend, one examines evenly spaced points at intervals
and checks to see that each subsequent point is greater than the previous.
Similarly, finding a DOWN trend is simple enough.

I'm wondering if anyone has suggestions as to what tests  I should include
in my program to determine conditions as illustrated below, where the
close price is near the low of a trading range with at least 2 similar
waves having occurred earlier?

                                     *
                 *                  *  *              *   *
                *  *                *   *            *      *
              *     *              *      *        *          *
          *            *           *        *      *             *
       *                 *        *          *     *               *
   *                       *    *             *   *                 *
*                            * *               * *                   * <-close

-any ideas are appreciated
-dan



Sat, 06 Mar 1999 03:00:00 GMT  
 Stock Technical Analysis Question

Quote:

>Got a question for you programmers that work with stock technical analysis.
>If each point on the graph represents the stock's closing price of the day,
>to determine a UP trend, one examines evenly spaced points at intervals
>and checks to see that each subsequent point is greater than the previous.
>Similarly, finding a DOWN trend is simple enough.
>I'm wondering if anyone has suggestions as to what tests  I should include
>in my program to determine conditions as illustrated below, where the
>close price is near the low of a trading range with at least 2 similar
>waves having occurred earlier?

>                                     *
>                 *                  *  *              *   *
>                *  *                *   *            *      *
>              *     *              *      *        *          *
>          *            *           *        *      *             *
>       *                 *        *          *     *               *
>   *                       *    *             *   *                 *
>*                            * *               * *                   * <-close
>-any ideas are appreciated
>-dan

Dan,
        The way to do it is to assign to each bar a pivit point...so, you have
a close price array, and a corresponding pivot point array.
        Each day, if the close is higher than both the close immediately
before, and the close immediately after, assign a value of 1 to pp()
for that day....if it's lower than the close immediately before as
well as immediately after it, assign pp() a value of -1.
        Now, go back to the beginning of the data...repeat the process, only
instead of looking at each day, look only at the pivot point days
which are positive. If a positive pp day is higher than the positive
pp day immediately before it and immediately after it, assign it a
value of 2...likewise with negative pp days...
Continue in theis fashion....In so doing, you can do do all types of
wave analysis questions, chart formation stuff, all in the data
itself. Good Luck, Ralph Vince


Sun, 07 Mar 1999 03:00:00 GMT  
 Stock Technical Analysis Question

Quote:

> Got a question for you programmers that work with stock technical analysis.

> If each point on the graph represents the stock's closing price of the day,
> to determine a UP trend, one examines evenly spaced points at intervals
> and checks to see that each subsequent point is greater than the previous.
> Similarly, finding a DOWN trend is simple enough.

> I'm wondering if anyone has suggestions as to what tests  I should include
> in my program to determine conditions as illustrated below, where the
> close price is near the low of a trading range with at least 2 similar
> waves having occurred earlier?

>                                      *
>                  *                  *  *              *   *
>                 *  *                *   *            *      *
>               *     *              *      *        *          *
>           *            *           *        *      *             *
>        *                 *        *          *     *               *
>    *                       *    *             *   *                 *
> *                            * *               * *                   * <-close

> -any ideas are appreciated
> -dan
>You can try the same approach as if you would to do it 'manually'. At

each point where the 'down' trend reverses itself (not just at a leveling
off, because it may continue down and not go up) 'remember' (i.e.store it
in an array) that point. Keep a 'list' (arrays) of each downmost point in
the graph, and then you have them for comparison purposes.  You can also
implement the same thing on the 'up' side of the graph.  Which can then
lead you to doing some more sophisticated stuff like opening/closing
quote comparisons to price/earning ratios, and plotting the trends
accross stocks with similiar trading patterns and same and/or differtnt
PE ratios.  Good luck.

MJG



Sun, 07 Mar 1999 03:00:00 GMT  
 
 [ 3 post ] 

 Relevant Pages 

1. Advanced technical analysis of stock indexes for the technical programmers who invest - djia.gif (1/1)

2. Advanced technical analysis of stock indexes for the technical programmers who invest - djia.gif (0/1)

3. Technical Analysis Program

4. Cyclical analysis of the stock market for the highly technical programmer who also plays the markets - indud.gif (0/1)

5. Cyclical analysis of the stock market for the highly technical programmer who also plays the markets - indud.gif (0/1)

6. how to use stock page info feed my own stock ticker

7. Interestant Question:Data Analysis in Access / Excel

8. XML for Analysis Questions

9. Complete question - New Seagate Analysis 7

10. Technical question.

11. Looking for a set of question to do VB technical inteview

12. VB Technical Interview Questions.

 

 
Powered by phpBB® Forum Software