PureBytes Links
Trading Reference Links
|
To anyone trying to use the float indicator ...
Has anyone got it to work? While I am pretty good with VB this is the FIRST
distribution of an app/dll that I have tried.
I believe there was a request for the AFL code that Tomasz and Dimitris help
provide. Here it is, although it is Quotes Plus specific:
MaxGraph = 9;
EnableScript("jscript");
// this is to show only one entry per stock
ticker = Name();
<%
CInfo = new ActiveXObject("QuotesPlus.CompanyInfo");
CInfo.Symbol = AFL("ticker");
// try-catch block handles the situation when
// QuotesPlus object returns strange values
try
{
AFL("Float") = Number( CInfo.Float() )*1000000;
}
catch( e )
{
AFL("Float") = 0;
}
%>
cumvol = LastValue( Cum( Volume ) ) - Cum( Volume );
lastrange = cumvol < float;
dayone = ExRem( lastrange, 0 );
Graph0 = Close;
hh = LastValue( HighestSince( dayone, High ) );
ll = LastValue( LowestSince( dayone, Low ) );
Graph0 = Close;
Graph0Style=64;
Graph0Color=2;
Graph1 = IIf( lastrange, hh, -1e10 );
Graph2 = IIf( lastrange, ll, -1e10 );
Graph1Style = Graph2Style = 1;
-----Original Message-----
From: Tom Supera [mailto:tom_supera@x...]
Sent: Tuesday, October 30, 2001 6:30 PM
To: amibroker@xxxxxxxxxxxxxxx
Subject: Re: [amibroker] Float Analysis
Hi,
I've downloaded your file.
At setup i must restart my computer, but when i after them restart setup
again, i become the same message (see .gif)
How can i use your file
Tom Supera
----- Original Message -----
From: "Peter Gialames" <investor@xxxx>
To: "Amibroker" <amibroker@xxxxxxxxxxxxxxx>
Sent: Tuesday, October 30, 2001 10:21 PM
Subject: [amibroker] Float Analysis
> At Steve Wood's Site (www.floatanalysis.com) he states:
>
> 'The mainstream technical analysis community is only slowly realizing the
> power of these indicators and what they show. Although the Woods
cumulative
> volume float indicators are basically very simple common sense concepts,
> they are not easy to program. At some point TradeStation and MetaStock may
> incoporate them into their basic package.'
>
> Well this is a 'Eureka' moment for me. I have been able to duplicate this
> indicator. It was easy (easy for Tomasz and Dimitris) to use AFL for this
> indicator. And being a Quotes Plus subscriber the Float information was
> readily available.
>
> But with the new version of AmiBroker and it's external programmability
(my
> flavor is VB), I have been able to create the indicator AND the ability to
> get the necessary float information via Yahoo. So anyone who wants to use
> this indicator just needs an internet connection.
>
> Attached is the AFL code, and the VB Project. I will post a setup file to
> the 'Files' section of yahoogroups.
>
> Thank you Tomasz for such a powerful program.
>
> Peter Gialames
>
> PS Also attached is a GIF of GNSS. I was looking (looking being the key
> word) at the stock at the beginning of the month around 30. It is now
> around the 44 area.
>
>
>
>
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>
>
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|