|
|||||||||||||||||||||||||||||||
| Special offer: buy MetaStock (try for free) | Reuters QuoteCenter Real-Time Data (get a free month) | EOD Data |
|
CC_Counter indicator . To: omega-list@xxxxxxxxxx . Subject: CC_Counter indicator . From: "J. Sallen" . Date: Tue, 17 Nov 1998 10:05:08 -0600 . Resent-Date: Tue, 17 Nov 1998 08:01:43 -0800 . Resent-From: omega-list@xxxxxxxxxx . Resent-Message-ID: <"dfBEc3.0.AN6.dtPKs"@mx1> . Resent-Sender: omega-list-request@xxxxxxxxxx This indicator counts consecutive closes up and down. Maybe someone can find a good use for it. Jack Sallen {Written: J. Sallen 10/03/98} For K=0 to Len-1 begin value2=0; For K=0 to Len-1 begin plot1(value2,"CC_Count"); [15294] Re: CC_Counter indicator . To: omega-list@xxxxxxxxxx "J. Sallen" Hi Jack, Actually it looks to me like your indicator plots a summation of the ups and downs in the last Len bars -- right? (I.e. if there were 4 ups and 6 downs, it would plot -2, regardless of what order they came in.) And that may actually be more useful than the consecutive ups/downs. Notice that it always jumps by 2, since you're always adding one at the end of the Len-long window and removing one from the start. So either the cumulative total remains the same (add one up / remove one up, add one down / remove one down) or it changes by 2 (add up / remove down, etc). Here's a slight modification of your indicator that doesn't require the CC array. I've also added an extra plot that does compute the consecutive number of ups/downs. Notice this one never has a value of zero, since it goes from "N down closes" to "1 up close" and vice versa. Gary Code:{Written: J. Sallen 10/03/98} plot1(value2,"CC_Count"); Vars: CCount(0); if (C > C[1]) then begin plot2(CCount, "CC2");
all formulas for TradeStation all formulas
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| However we try to maintain hiqhest possible level of service - most formulas, oscillators, indicators and systems are submitted by anonymous users. Therefore S4T™ does not take any responsibility for it's quality. If you use any of this information, use it at your own risk. You are responsible for your own trading decisions. Be sure to verify that any information you see on these pages is correct, and is applicable to your particular trade. In no case will S4T™ be responsible for your trading gains or losses. |
||
|
||
|