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

GAIN-LOSS ISSUES



PureBytes Links

Trading Reference Links

Dimitris Tsokakis 

------=_NextPart_001_0008_01C10706.C60B1DA0
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>A first step to enlarge Advissues possibilities is 
the&nbsp;att. code,</FONT></DIV>
<DIV><FONT size=2>searching for issues with any gain the last 20 days andissues 
with loss</FONT></DIV>
<DIV><FONT size=2>or unchanged related to their price 20 days ago.</FONT></DIV>
<DIV><FONT size=2>Changing the time interval, or the roc price, you may demand 
more </FONT></DIV>
<DIV><FONT size=2>specific conditions.</FONT></DIV>
<DIV><FONT size=2>The att. gif explains, among the others, why we use 
oscillators in Technical</FONT></DIV>
<DIV><FONT size=2>Analysis Study. The population of Gainers and Loosers 
oscillates between</FONT></DIV>
<DIV><FONT size=2>maximum and minimum level in perpetuum.</FONT></DIV>
<DIV><FONT size=2>Time intervals between crosses possibly introduce a relation 
to waves or&nbsp;</FONT></DIV>
<DIV><FONT size=2>Fibonacci time series, but I think it is enough for 
now.</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT size=2>Dimitris Tsokakis</FONT>&nbsp;</DIV></BODY></HTML>

------=_NextPart_001_0008_01C10706.C60B1DA0--

/*AFL CODE FOR AUTOMATIC ANALYSIS SCAN MODE*/
/*LOSS ISSUES*/
EnableScript("jscript");
days = day();
months = month();
years = year();
values = roc(c,20)<=1;
<%
days = AFL("days").toArray();
months = AFL("months").toArray();
years = AFL("years").toArray();
values = AFL("values").toArray();
oAB = new ActiveXObject("Broker.Application");
comp = oAB.Stocks.Add("_loss");
for( i = 0; i < days.length; i++ )
{
qt = comp.Quotations.Add( years[ i ] + "-" + months[ i ] + "-" + days[i ] );

qt.Volume += values[ i ] == 1 ? 1 : 0;
}

%>
buy=0;

/*AFL CODE FOR AUTOMATIC ANALYSIS SCAN MODE*/
/*GAIN ISSUES*/
EnableScript("jscript");
days = day();
months = month();
years = year();
values = roc(c,20)>1;
<%
days = AFL("days").toArray();
months = AFL("months").toArray();
years = AFL("years").toArray();
values = AFL("values").toArray();
oAB = new ActiveXObject("Broker.Application");
comp = oAB.Stocks.Add("_gain");
for( i = 0; i < days.length; i++ )
{
qt = comp.Quotations.Add( years[ i ] + "-" + months[ i ] + "-" + days[i ] );

qt.Volume += values[ i ] == 1 ? 1 : 0;
}

%>
buy=0;

/*AFL CODE FOR INDICATOR BUILDER*/
g20= foreign("_gain","V");
L20=foreign("_loss","V");
graph1=g20;
graph0=l20;
tot=0.5*(g20+l20);
graph2=tot;
graph2style=1;
Attachment:
gif00066.gif

Attachment: Description: "Description: GIF image"