PureBytes Links
Trading Reference Links
|
/*AFL CODE FOR STOCHCCI*/
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*/
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 CCI began after reading
Dennis Peterson "Stochastic RSI and Nasdaq", Stocks & Commodities 12/11/00
article.
------=_NextPart_001_0016_01C0EF50.4C32E580
Content-Type: text/html;
charset="iso-8859-7"
Content-Transfer-Encoding: quoted-printable
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META content="text/html; charset=iso-8859-7" http-equiv=Content-Type>
<META content="MSHTML 5.00.3013.2600" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT face=Arial size=2>In the following example both stochRSI andstochCCI
were used to produce</FONT></DIV>
<DIV><FONT face=Arial size=2>"buy" signals during an 11 months
uptrend.</FONT></DIV>
<DIV><FONT face=Arial size=2>Red bars are coming from "stochastic RSI<0.1 and
MACD<SIGNAL".</FONT></DIV>
<DIV><FONT face=Arial size=2>Small X are deriving from "stochastic CCI<0.1
and MACD<SIGNAL".</FONT></DIV>
<DIV><FONT face=Arial size=2>Combination of those valuable indicators ensures
that a new entry point is born.</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>/*AFL CODE FOR STOCHCCI*/</FONT></DIV>
<DIV> </DIV>
<DIV><FONT face=Arial
size=2>Stochcci=(cci(14)-llv(cci(14),14))/(hhv(cci(14),14)-llv(cci(14),14));<BR>COND=IIF(MACD()<SIGNAL()
AND
STOCHCCI<0.1,C,0);<BR>graph0=C;<BR>graph0barcolor=3;<BR>GRAPH1=COND;<BR>GRAPH1BARCOLOR=7;<BR>GRAPH1STYLE=2;</FONT></DIV>
<DIV><FONT face=Arial size=2> </FONT></DIV>
<DIV><FONT face=Arial size=2> </DIV>
<DIV><FONT face=Arial size=2>/*AFL CODE FOR STOCHRSI*/</FONT></DIV></FONT>
<DIV> <FONT face=Arial
size=2>StochRSi=(RSi(14)-llv(RSi(14),14))/(hhv(RSi(14),14)-llv(RSi(14),14));<BR>COND1=IIF(MACD()<SIGNAL()
AND
STOCHRSI<0.1,C,0);<BR>graph0=C;<BR>graph0barcolor=3;<BR>GRAPH1=COND1;<BR>GRAPH1BARCOLOR=4;<BR>GRAPH1STYLE=2;</FONT></DIV>
<DIV> </DIV>
<DIV><FONT face=Arial size=2>Dimitris Tsokakis</FONT></DIV>
<DIV> </DIV>
<DIV><FONT face=Arial size=2>P. S. My research in stochastic CCI began
after reading <I> </I></FONT></DIV>
<DIV><FONT face=Arial size=2><EM>Dennis Peterson "Stochastic RSI and Nasdaq",
Stocks & Commodities 12/11/00</EM></FONT></DIV>
<DIV><FONT face=Arial size=2>article. </FONT></DIV></BODY></HTML>
------=_NextPart_001_0016_01C0EF50.4C32E580--
Attachment:
gif00053.gif
Attachment:
Description: "Description: GIF image"
|