[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Removing Excess Signal



PureBytes Links

Trading Reference Links

/*DETECTION BUY-SELL*/
sell=-cross(70,stochd());
buy=cross(stochd(),30);
graph0=sell;
GRAPH0STYLE=2;
graph1=buy;
graph1style=2;
graph1barcolor=5;


/*REMOVE EXCESS SIGNAL*/
SELLD=-cross(70,stochd());
BUYD=cross(stochd(),30);
e1=-exrem(SELLD,BUYD);
graph0=e1;
GRAPH0STYLE=2;
e2=exrem(BUYD,SELLD);
graph1=e2;
graph1style=2;
graph1barcolor=5;

In Automatic Analysis you can run the scan

/*REMOVE EXCESS SIGNAL SCAN*/
SELLD=-cross(70,stochd());
BUYD=cross(stochd(),30);
e1=-exrem(SELLD,BUYD);
graph0=e1;
GRAPH0STYLE=2;
e2=exrem(BUYD,SELLD);
graph1=e2;
graph1style=2;
graph1barcolor=5;
BUY=E2==1;
SELL=E1==-1;

and as you see from "remove2.gif", buy-sell arrows are
at the same points with green-red bars and ALL excess
signals are REMOVED.

Dimitris Tsokakis

------=_NextPart_001_0010_01C121BD.71B35C00
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 size=2>In the graph titled "DETECTION BUY-SELL" you can see 
</FONT></DIV>
<DIV><FONT size=2>all BUY (green bars) and all SELL (red bars) signals 
generated</FONT></DIV>
<DIV><FONT size=2>when ascending&nbsp; stochd() crosses 30 for BUY and when 
descending</FONT></DIV>
<DIV><FONT size=2>stochd() crosses 70 for SELL.</FONT></DIV>
<DIV><FONT size=2>In the graph titled "REMOVE EXCESS SIGNAL" you can see 
</FONT></DIV>
<DIV><FONT size=2>selected the first BUY, ignore the rest BUY until you select 
the</FONT></DIV>
<DIV><FONT size=2>first SELL and ignore the rest SELL.</FONT></DIV>
<DIV><FONT size=2>In this way you can have all BUY-SELL pairs, using AFL 
functions.</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT size=2>/*DETECTION BUY-SELL*/</FONT></DIV>
<DIV><FONT 
size=2>sell=-cross(70,stochd());<BR>buy=cross(stochd(),30);<BR>graph0=sell;<BR>GRAPH0STYLE=2;<BR>graph1=buy;<BR>graph1style=2;<BR>graph1barcolor=5;</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT size=2></FONT>&nbsp;</DIV>
<DIV><FONT size=2>/*REMOVE EXCESS SIGNAL*/</FONT></DIV>
<DIV><FONT 
size=2>SELLD=-cross(70,stochd());<BR>BUYD=cross(stochd(),30);</FONT></DIV>
<DIV><FONT 
size=2>e1=-exrem(SELLD,BUYD);<BR>graph0=e1;<BR>GRAPH0STYLE=2;<BR>e2=exrem(BUYD,SELLD);<BR>graph1=e2;<BR>graph1style=2;<BR>graph1barcolor=5;</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT size=2>In Automatic Analysis you can run the scan</FONT></DIV>
<DIV><FONT size=2></FONT>&nbsp;</DIV>
<DIV><FONT size=2>/*REMOVE EXCESS SIGNAL SCAN*/</FONT></DIV>
<DIV><FONT 
size=2>SELLD=-cross(70,stochd());<BR>BUYD=cross(stochd(),30);</FONT></DIV>
<DIV><FONT 
size=2>e1=-exrem(SELLD,BUYD);<BR>graph0=e1;<BR>GRAPH0STYLE=2;<BR>e2=exrem(BUYD,SELLD);<BR>graph1=e2;<BR>graph1style=2;<BR>graph1barcolor=5;<BR>BUY=E2==1;<BR>SELL=E1==-1;</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT size=2>and as you see from "remove2.gif", buy-sell arrows 
are</FONT></DIV>
<DIV><FONT size=2>at the same points with green-red bars and&nbsp;ALL 
excess</FONT></DIV>
<DIV><FONT size=2>signals are REMOVED.</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT size=2>Dimitris Tsokakis</FONT></DIV></BODY></HTML>

------=_NextPart_001_0010_01C121BD.71B35C00--

Attachment:
gif00110.gif
Description: GIF image
Attachment:

Attachment: Description: "Description: GIF image"

Attachment: Description: "gif00111.gif"