PureBytes Links
Trading Reference Links
|
DT:
The Master Magician strikes again.
Exactly what I described, almost. Really, this is good.
In my ideal world, TJ would program a tool that works like the Fib tool,
but which is rotated 90 degrees. This would allow you to click and drag
while the family of lines expands to the right. Click again to anchor
it. Then, click and drag the group of lines and would also allow you to
see out into the future right side of the chart. No, I do not mean see
the future bars (nice if TJ could do it), rather, it would allow you to
see a vertical line at a reasonable future date and would show that date
if you placed your cursor over the line.
But thanks, my goodness, this is half or more as good as my ideal and it
better that what I had before.
Ken
-----Original Message-----
From: DIMITRIS TSOKAKIS [mailto:TSOKAKIS@xxxxxxxxx]
Sent: Sunday, June 13, 2004 3:14 PM
To: amibroker@xxxxxxxxxxxxxxx
Subject: [amibroker] Re: The AB Fib Time tool could be better
Ken,
Draw a trendline AB and
Plot(C,"C",1,64);
AB=Study("AB",GetChartID());
T1=ValueWhen(Cum(IsTrue(AB))==1,BarIndex());
T2=LastValue(ValueWhen(IsTrue(AB),BarIndex()));
procedure p(f)
{
PlotShapes(shapeCircle*(BarIndex()-t2==int(f*(t2-t1))),colorRed);
}
p(0.382);
p(0.5);
p(0.618);
p(1);
p(1.618);
Dimitris Tsokakis
--- In amibroker@xxxxxxxxxxxxxxx, "Ken Close" <closeks@xxxx> wrote:
> >>As for your PS, there is a built-in Fib time zones tool in
amibroker.
> >>Do you need something different ?
>
>
> DT: yes, the kind of fib time tool capability I was interested in
would
> allow me to click once on a low pivot (for example), then click
again,
> on say, a high pivot, and the program would allow me to plot various
> ratio days of the number of days between the pivots, (ie, 38.2% of
the
> number of days, 61.8%, etc)
>
> Thanks for your note.
>
> Ken
>
>
> ---
> Outgoing mail is certified Virus Free.
> Checked by AVG anti-virus system (http://www.grisoft.com).
> Version: 6.0.692 / Virus Database: 453 - Release Date: 5/28/2004
Check AmiBroker web page at:
http://www.amibroker.com/
Check group FAQ at:
http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups Links
---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.692 / Virus Database: 453 - Release Date: 5/28/2004
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.692 / Virus Database: 453 - Release Date: 5/28/2004
------------------------ Yahoo! Groups Sponsor --------------------~-->
Yahoo! Domains - Claim yours for only $14.70
http://us.click.yahoo.com/Z1wmxD/DREIAA/yQLSAA/GHeqlB/TM
--------------------------------------------------------------------~->
Check AmiBroker web page at:
http://www.amibroker.com/
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|