PureBytes Links
Trading Reference Links
|
<x-html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 5.50.4207.2601" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#dfffff>
<DIV><FONT face=Arial size=2>Here's my attempt at creating a Volume Float
Indicator. Here is the code for the 3 indicators shown on the attached
gif:</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>!MY - Binary Float</FONT></DIV>
<DIV> </DIV>
<DIV><FONT face=Arial size=2>Float:=Input("# shares :
",1,1000000000,1600000);<BR>BinFloat:=If((VOLUME + Ref(VOLUME,-1)+PREV) >=
Float,1,-1);<BR>BinFloat;<BR>-----------------------------------------------------------</FONT></DIV>
<DIV> </DIV>
<DIV><FONT face=Arial size=2>!MY - Float Volume</FONT></DIV>
<DIV> </DIV>
<DIV><FONT face=Arial size=2>Float:=Input("# shares :
",1,1000000000,1600000);</FONT></DIV>
<DIV><FONT face=Arial size=2>floatSum:=If((V + PREV) >= Float, V,
V+PREV);<BR>floatSum;<BR>-----------------------------------------------------------</FONT></DIV>
<DIV> </DIV>
<DIV><FONT face=Arial size=2>!MY - Float Volume-2</FONT></DIV>
<DIV> </DIV>
<DIV><FONT face=Arial size=2>Float:=Input("# shares :
",1,1000000000,1600000);</FONT></DIV>
<DIV><FONT face=Arial size=2>floatSum:=If(((V + PREV) =
Float),<BR> 0,
<BR> (If((V + PREV) >
Float,<BR> (V -
(Float - PREV)),<BR>
(V + PREV))));<BR>floatSum; </FONT></DIV>
<DIV><FONT face=Arial
size=2>----------------------------------------------------------</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>The variation # 2 in the float volume
indicator attempts to remove the volume from the volume float summation that it
takes to get to the float.</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>The binary attempt doesn't seem to work correctly,
but I'm not sure how to correct it as it sems to work some times.</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>The vertical blue lines are set to dates that show
float turnover as day 1 from the XL spreadsheet analysis I performed on
VNTR.</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>The horizontal blue lines are set to dates that
show a recent price channel at at a recent low.</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>Anyon have any thoughts on how to improve these
results?</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>John</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV></BODY></HTML>
</x-html>
Attachment Converted: "c:\program files\qualcomm\eudora\attach\!!!VNTR_Float_09_11_2000.GIF"
|