PureBytes Links
Trading Reference Links
|
I like the idea of combining indictor
formula's. Connie Brown (raised during my tiff with "Bill" wavemechanic)
developed a composite indicator and traded with it successfiully for some time
(she says).
P
<BLOCKQUOTE
>
----- Original Message -----
<DIV
>From:
Dimitris
Tsokakis
To: <A title=amibroker@xxxxxxxxxx
href="">amibroker@xxxxxxxxxxxxxxx
Sent: Thursday, June 07, 2001 7:49
PM
Subject: [amibroker] STOCHCCI, STOCHRSI.
AN APPLICATION
In the following example both stochRSI and
stochCCI were used to produce
"buy" signals during an 11 months
uptrend.
Red bars are coming from "stochastic RSI<0.1
and MACD<SIGNAL".
Small X are deriving from "stochastic CCI<0.1
and MACD<SIGNAL".
Combination of those valuable indicatorsensures
that a new entry point is born.
/*AFL CODE FOR STOCHCCI*/
<FONT face=Arial
size=2>Stochcci=(cci(14)-llv(cci(14),14))/(hhv(cci(14),14)-llv(cci(14),14));COND=IIF(MACD()<SIGNAL()
AND
STOCHCCI<0.1,C,0);graph0=C;graph0barcolor=3;GRAPH1=COND;GRAPH1BARCOLOR=7;GRAPH1STYLE=2;
/*AFL CODE FOR STOCHRSI*/
<FONT face=Arial
size=2>StochRSi=(RSi(14)-llv(RSi(14),14))/(hhv(RSi(14),14)-llv(RSi(14),14));COND1=IIF(MACD()<SIGNAL()
AND
STOCHRSI<0.1,C,0);graph0=C;graph0barcolor=3;GRAPH1=COND1;GRAPH1BARCOLOR=4;GRAPH1STYLE=2;
Dimitris Tsokakis
P. S. My research in stochastic CCIbegan
after reading
Dennis Peterson "Stochastic RSI and Nasdaq",
Stocks & Commodities 12/11/00
article. Your
use of Yahoo! Groups is subject to the <A
href="">Yahoo! Terms of Service.
|