PureBytes Links
Trading Reference Links
|
------=_Part_77511_25939508.1167741600013
Mime-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Disposition: inline
Yes I got it working
But one problem still exists.
while scanning in "Use Filter" if I select favourites + one more watch
list...
the results are much less, compared to when I just select favorites.
If you are asking for code, it is pretty simple.
ret = Study("RE", 1002);
Buy = Cross(ret, C) OR Cross(C, ret);// :-) using OR to make sure I get an
alert whenever they cross each other.
if you need more lines do same for "SU"
or you can use any more 2 lettered names like "R1' "R2"..
Make sure you find your chart id.. which is 1002 in my case.
Two issues in this case.
1. Use filter not working proeprly. (or may be i am making mistake again,
not sure, you check)
2. Chart id is not a great idea for trend line scanning..
since I would like to have an alert whenever a line is cracked on a stock..
irrespective of which chart it was drawn on..
Technically I cant say its wrong.. but not great usage wise for me.
I think amibroker should come with more inbuilt stuff to support line
breakouts.
Its a huge idea which most traders use.
even then I love whatever is already present.
(again my view.. designer knows better)
regards
rajeev
On 1/2/07, Rick Miller <rick300m@xxxxxxxxxxxxx> wrote:
>
> Rajeev- Did you get an AFL to work? I am very interested in this same
> function.
>
> -----Original Message-----
> *From:* amibroker@xxxxxxxxxxxxxxx [mailto:amibroker@xxxxxxxxxxxxxxx] *On
> Behalf Of *RajeevM
> *Sent:* Wednesday, October 18, 2006 6:24 AM
> *To:* amibroker@xxxxxxxxxxxxxxx
> *Subject:* Re: [amibroker] TrendLine Scanning: Far from satisfactory
>
> Wackao.
> Thanks for your idea.
>
> I was cracking my head on this since several weeks.
> Didnot find this precaution of not using the same name more than once.
>
> This is a little hindrance in some ways..
> since I could have say 5 lines on a chart which are resistance of
> different kinds(time frame)
> and would like to get alerted on all of them...
> (dont want to keep redrawing the lines and assign RE to latest one)
>
>
> Is this any way to get a handle/pointer on all the lines drawn on a single
> chart
> using some afl and give them names iteratively like R1, R2, R3....?
>
> and then scan for buy/sell signals across all lines?
>
> thanks for your help.
>
> regards
> Rajeev
>
>
>
> On 10/18/06, Graham <kavemanperth@xxxxxxxxx> wrote:
> >
> > You do not give the studyID name to more than one line
> > Name them differently
> >
> > I also assume that the lines existed across the bar you were scanning
> > on.
> >
> > --
> > Cheers
> > Graham
> > AB-Write >< Professional AFL Writing Service
> > Yes, I write AFL code to your requirements
> > http://www.aflwriting.com
> >
> > On 18/10/06, RajeevM < rajeevmundra@xxxxxxxxx> wrote:
> > >
> > > Further to previous email today I found one more issue.
> > >
> > >
> > > Setup 1.
> > > In a stock price chart (say ranbaxy) I drew a upper channel and gave
> > > STUDY ID as RE.
> > > Scan for trendline crack and I got the alert... (the name ranbaxy came
> > > up).
> > >
> > >
> > > Set Up 2.
> > > Draw any random line on the chart which doesnot cuts the price
> > > anywhere and give it studyID as RE.
> > > Next draw a upper channel (as in setup1) and gave STUDY ID as RE.
> > > Scan for trendline crack and I DONT get the result. (the name doesnot
> > > comes up)
> > >
> > > Does it means I would get result only with the frist drawn Trendline
> > > which is amrked as RE?
> > >
> > > Thomas or anyone who can guide on this?
> > > How can I get an alert for any trendline (amrked as RE) cross.. not
> > > just the one I drew first.
> > >
> > > Anyone faced this issue earlier?
> > >
> > > my afl for trendline scanning is this
> > > ===================
> > > ret = Study("RE", 1002);
> > >
> > > Buy = Cross(C, ret);
> > > Sell = Cross(ret,C);
> > >
> > > AlertIf(Buy, "", "",1,1 );
> > > AlertIf(Sell, "", "",2,1 );
> > >
> > > AlertIf( Buy , "SOUND C:\\Windows\\Media\\Ding.wav", "Audio alert", 1
> > > );
> > > AlertIf( Sell, "SOUND C:\\WINDOWS\\Media\\ir_inter.wav", "Audio
> > > alert", 2);
> > > =====================
> > >
> > > regards
> > > Rajeev
> > >
> > > ---------- Forwarded message ----------
> > > From: RajeevM < rajeevmundra@xxxxxxxxx>
> > > Date: Oct 15, 2006 11:11 PM
> > > Subject: Re: TrendLine Scanning: Far from satisfactory
> > > To: amibroker@xxxxxxxxxxxxxxx
> > >
> > > One more thing I saw while scanning..
> > >
> > > when i select favorites only in filter I get my result..
> > > and when i select a watch list in the filter->inlude I get fewer
> > > results..(seems the result come only from the watch list)
> > >
> > > image attached.
> > > Is this some known issue which is resolved in latest versions?
> > >
> > > regards
> > > rajeev
> > >
> > > On 10/15/06, RajeevM < rajeevmundra@xxxxxxxxx> wrote:
> > > >
> > > > Anyone in this group uses Trendline scanning for real time alerts
> > > > during trading hours or after mkt hours?
> > > >
> > > > I face a lot of issues and inconsistent behaviour with TrendLine
> > > > scanning.
> > > >
> > > > Some issues:
> > > > 1. I have drawn trendlines across 75-100 charts, even then i get
> > > > results for only 1-2 stocks while I cna visually see 10-20 of then getting
> > > > crossed.
> > > >
> > > > 2. To test what mistake i am making, I pick up one chart.. draw a
> > > > line which is cutting lastest 3-4 price candles .. mark as RE and then
> > > > scan..
> > > > Gives No result.... and then I delete this line... draw one more
> > > > line and scan again.. I get the result or sometimes I dont get.
> > > > This is a little wierd..
> > > >
> > > > 3. Sometiems I get results even when I Dont visually see any lines
> > > > on a chart...!! Seems some previous drawn lines which are hidden now..??
> > > >
> > > > How can I make trendline working smoothly.
> > > > Anyone faced similar issues.. kindly share your experience.
> > > >
> > > >
> > > > my afl for Trendline scan is
> > > >
> > > > ===================
> > > > ret = Study("RE", 1002);
> > > >
> > > > Buy = Cross(C, ret);
> > > > Sell = Cross(ret,C);
> > > >
> > > > AlertIf(Buy, "", "",1,1 );
> > > > AlertIf(Sell, "", "",2,1 );
> > > >
> > > > AlertIf( Buy , "SOUND C:\\Windows\\Media\\Ding.wav", "Audio alert",
> > > > 1 );
> > > > AlertIf( Sell, "SOUND C:\\WINDOWS\\Media\\ir_inter.wav", "Audio
> > > > alert", 2);
> > > > =====================
> > > >
> > >
> > >
> >
> >
> >
>
>
> --
> Rajeev Mundra | Founder : EagleEye TradeTech
> Cell: +91 98608 51052 | Yahoo Id: rajeevmundra
> Email: rajeevmundra@xxxxxxxxx
> ~Take Risks www.eetradeconsult.blogspot.com
>
>
--
RajeevM
www.EagleEyeTrade.com
Red Hot Trades, Day After Day.
cell: 0 98608 51052 | yahoo: rajeevmundra
------=_Part_77511_25939508.1167741600013
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
</head>
<!-- Network content -->
<body style="background-color: #ffffff;">
<!--~-|**|PrettyHtmlStartT|**|-~-->
<div id="ygrp-mlmsg" style="width:655px; position:relative;">
<div id="ygrp-msg" style="width: 490px; padding: 0 15px 0 0; float:left; z-index:1;">
<!--~-|**|PrettyHtmlEndT|**|-~-->
<div id="ygrp-text">
<p>Yes I got it working<br><br>But one problem still exists.<br><br>while scanning in "Use Filter" if I select favourites + one more watch list...<br>the results are much less, compared to when I just select favorites.
<br><br>If you are asking for code, it is pretty simple.<br><br>ret = Study("RE", 1002);<br>Buy = Cross(ret, C) OR Cross(C, ret);// :-) using OR to make sure I get an alert whenever they cross each other.<br><br>
if you need more lines do same for "SU"<br>or you can use any more 2 lettered names like "R1' "R2"..<br><br><br>Make sure you find your chart id.. which is 1002 in my case.<br><br>Two issues in this case.
<br>1. Use filter not working proeprly. (or may be i am making mistake again, not sure, you check)<br>2. Chart id is not a great idea for trend line scanning.. <br>since I would like to have an alert whenever a line is cracked on a stock..
<br>irrespective of which chart it was drawn on..<br>Technically I cant say its wrong.. but not great usage wise for me.<br><br><br>
I think amibroker should come with more inbuilt stuff to support line breakouts.<br>
Its a huge idea which most traders use.<br><br>even then I love whatever is already present.<br><br>(again my view.. designer knows better)<br><br>regards<br>rajeev<br><br><div><span class="gmail_quote">On 1/2/07, <b class="gmail_sendername">
Rick Miller</b> <<a href="mailto:rick300m@xxxxxxxxxxxxx">rick300m@xxxxxxxxxx<wbr>net</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204);">
<div>
<div><font color="#0000ff" face="Arial"><span>Rajeev-
Did you get an AFL to work? I am very interested in this same
function.</span></font></div>
<blockquote><div><span class="e" id="q_10fdf6e705caf933_1">
<div></div>
<div dir="ltr" align="left" lang="en-us"><font face="Tahoma" size="2">-----Original Message-----<br><b>From:</b>
<a href="mailto:amibroker@xxxxxxxxxxxxxxx" target="_blank">amibroker@xxxxxxxxx<wbr>ps.com</a> [mailto:<a href="mailto:amibroker@xxxxxxxxxxxxxxx" target="_blank">
amibroker@xxxxxxxxx<wbr>ps.com</a>] <b>On Behalf Of
</b>RajeevM<br><b>Sent:</b> Wednesday, October 18, 2006 6:24 AM<br><b>To:</b>
<a href="mailto:amibroker@xxxxxxxxxxxxxxx" target="_blank">amibroker@xxxxxxxxx<wbr>ps.com</a><br><b>Subject:</b> Re: [amibroker] TrendLine
Scanning: Far from satisfactory<br><br></font></div>Wackao.<br>Thanks for your
idea.<br><br>I was cracking my head on this since several weeks.<br>Didnot
find this precaution of not using the same name more than once.<br><br>This is
a little hindrance in some ways.. <br>since I could have say 5 lines on a
chart which are resistance of different kinds(time frame) <br>and would like
to get alerted on all of them... <br>(dont want to keep redrawing the lines
and assign RE to latest one)<br><br><br><span style="font-weight: bold;">Is
this any way to get a handle/pointer on all the lines drawn on a single chart
</span><br style="font-weight: bold;"><span style="font-weight: bold;">using
some afl and give them names iteratively like R1, R2,
R3....?</span><br><br>and then scan for buy/sell signals across all
lines?<br><br>thanks for your help. <br><br>regards<br>Rajeev<br><br><br><br>
<div><span class="gmail_quote">On 10/18/06, <b class="gmail_sendername">Graham</b>
<<a href="mailto:kavemanperth@xxxxxxxxx" target="_blank">kavemanperth@<wbr>gmail.com</a>>
wrote:</span>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204);">
<div>You do not give the studyID name to more than one line<br>Name them
differently<br><br>I also assume that the lines existed across the bar you
were scanning on.<br><br>-- <br>Cheers<br>Graham<br>AB-Write ><
Professional AFL Writing Service <br>Yes, I write AFL code to your
requirements<br><a href="http://www.aflwriting.com" target="_blank">http://www.aflwriti<wbr>ng.com</a>
<div><span><font color="#0000ff" face="Arial"></font><br><br>
<div><span class="gmail_quote">On 18/10/06, <b class="gmail_sendername">RajeevM</b> <<a href="mailto:rajeevmundra@xxxxxxxxx" target="_blank">
rajeevmundra@<wbr>gmail.com</a>> wrote:</span>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204);">
<div>Further to previous email today I found one more
issue.<br><br><br>Setup 1.<br>In a stock price chart (say ranbaxy) I drew
a upper channel and gave STUDY ID as RE.<br>Scan for trendline crack and I
got the alert... (the name ranbaxy came up). <br><br><br>Set Up 2.<br>Draw
any random line on the chart which doesnot cuts the price anywhere and
give it studyID as RE.<br>Next draw a upper channel (as in setup1) and
gave STUDY ID as RE.<br>Scan for trendline crack and I <span style="font-weight: bold;">DONT </span>get the result. (the name doesnot
comes up)<br><br>Does it means I would get result only with the frist
drawn Trendline which is amrked as RE?<br><br>Thomas or anyone who can
guide on this? <br>How can I get an alert for any trendline (amrked as RE)
cross.. not just the one I drew first.<br><br>Anyone faced this issue
earlier?<br><br>my afl for trendline scanning is
this<br><span>============<wbr>=======<br>ret = Study("RE",
1002);<br><br>Buy = Cross(C, ret);<br>Sell =
Cross(ret,C)<wbr>; <br><br>AlertIf(Buy, "", "",1,1
);<br>AlertIf(Sell, "", "",2,1 );<br><br>AlertIf( Buy , "SOUND
C:\\Windows\<wbr>\Media\\Ding.<wbr>wav", "Audio alert", 1 );<br>AlertIf( Sell,
"SOUND C:\\WINDOWS\<wbr>\Media\\ir_<wbr>inter.wav", "Audio alert", 2);
<br>============<wbr>=========<br><br></span>regards<br>Rajeev<br><br>----------
Forwarded message ----------<br><span class="gmail_quote">From: <b class="gmail_sendername">RajeevM</b> <<a href="mailto:rajeevmundra@xxxxxxxxx" target="_blank">
rajeevmundra@<wbr>gmail.com</a>><br>Date: Oct 15, 2006 11:11 PM<br>Subject:
Re: TrendLine Scanning: Far from satisfactory<br>To: <a href="mailto:amibroker@xxxxxxxxxxxxxxx" target="_blank">amibroker@xxxxxxxxx<wbr>ps.com</a><br><br></span>One more thing I
saw while scanning.. <br><br>when i select favorites only in filter I get
my result..<br>and when i select a watch list in the filter->inlude I
get fewer results..(seems the result come only from the watch list)
<br><br>image attached.<br>Is this some known issue which is resolved in
latest versions?<br><br>regards<br>rajeev
<div><span><br><br>
<div><span class="gmail_quote">On 10/15/06, <b class="gmail_sendername">RajeevM</b> <<a href="mailto:rajeevmundra@xxxxxxxxx" target="_blank">
rajeevmundra@<wbr>gmail.com</a>> wrote:</span>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204);">Anyone
in this group uses Trendline scanning for real time alerts during
trading hours or after mkt hours? <br><br>I face a lot of issues and
inconsistent behaviour with TrendLine scanning.<br><br>Some
issues:<br>1. I have drawn trendlines across 75-100 charts, even then i
get results for only 1-2 stocks while I cna visually see 10-20 of then
getting crossed. <br><br>2. To test what mistake i am making, I pick up
one chart.. draw a line which is cutting lastest 3-4 price candles ..
mark as RE and then scan.. <br>Gives No result.... and then I delete
this line... draw one more line and scan again.. I get the result or
sometimes I dont get. <br>This is a little wierd..<br><br>3. Sometiems I
get results even when I Dont visually see any lines on a chart...!!
Seems some previous drawn lines which are hidden now..??<br><br>How can
I make trendline working smoothly. <br>Anyone faced similar issues..
kindly share your experience.<br><br><br>my afl for Trendline scan
is<br><br>============<wbr>=======<br>ret = Study("RE",
1002);<br><br>Buy = Cross(C, ret);<br>Sell =
Cross(ret,C)<wbr>; <br><br>AlertIf(Buy, "", "",1,1
);<br>AlertIf(Sell, "", "",2,1 );<br><br>AlertIf( Buy , "SOUND
C:\\Windows\<wbr>\Media\\Ding.<wbr>wav", "Audio alert", 1 );<br>AlertIf( Sell,
"SOUND C:\\WINDOWS\<wbr>\Media\\ir_<wbr>inter.wav", "Audio alert", 2);
<br>============<wbr>=========<span><br></span></blockquote></div></span></div><span style="color: white;" width="1"></span></div><br clear="all"></blockquote></div><br><br clear="all"><br></span></div><span style="color: white;" width="1">
</span></div></blockquote></div><br><br clear="all"><br></span></div><span class="q">-- <br>Rajeev Mundra | Founder : EagleEye TradeTech<br>Cell: +91
98608 51052 | Yahoo Id: rajeevmundra<br>Email: <a href="mailto:rajeevmundra@xxxxxxxxx" target="_blank">rajeevmundra@<wbr>gmail.com</a> <br></span>~Take
Risks <a href="http://www.eetradeconsult.blogspot.com" target="_blank">www.eetradeconsult.<wbr>blogspot.<wbr>com</a>
<span style="color: white;" width="1"></span> </blockquote></div>
</blockquote></div><br><br clear="all"><br>-- <br>RajeevM<br><a href="http://www.EagleEyeTrade.com">www.EagleEyeTrade.<wbr>com</a><br>Red Hot Trades, Day After Day.<br>cell: 0 98608 51052 | yahoo: rajeevmundra
</p>
</div>
<!--~-|**|PrettyHtmlStart|**|-~-->
<span width="1" style="color: white;">__._,_.___</span>
<!-- Start the section with Message In topic -->
<div id="ygrp-actbar">
<span class="left">
<a href="http://groups.yahoo.com/group/amibroker/message/102208;_ylc=X3oDMTM4bzAwODE0BF9TAzk3MzU5NzE0BGdycElkAzEwMTA2OTIEZ3Jwc3BJZAMxNzA1NjMyMTk4BG1zZ0lkAzEwNDc3NQRzZWMDZnRyBHNsawN2dHBjBHN0aW1lAzExNjc3NDI3ODEEdHBjSWQDMTAyMjA4">
Messages in this topic </a> (<span class="bld">6</span>)
</span>
<a href="http://groups.yahoo.com/group/amibroker/post;_ylc=X3oDMTJydWFza3RzBF9TAzk3MzU5NzE0BGdycElkAzEwMTA2OTIEZ3Jwc3BJZAMxNzA1NjMyMTk4BG1zZ0lkAzEwNDc3NQRzZWMDZnRyBHNsawNycGx5BHN0aW1lAzExNjc3NDI3ODE-?act=reply&messageNum=104775">
<span class="bld">
Reply </span> (via web post)
</a> |
<a href="http://groups.yahoo.com/group/amibroker/post;_ylc=X3oDMTJlZG9lbDUyBF9TAzk3MzU5NzE0BGdycElkAzEwMTA2OTIEZ3Jwc3BJZAMxNzA1NjMyMTk4BHNlYwNmdHIEc2xrA250cGMEc3RpbWUDMTE2Nzc0Mjc4MQ--" class="bld">
Start a new topic </a>
</div>
<!------- Start Nav Bar ------>
<!-- |**|begin egp html banner|**| -->
<div id="ygrp-vitnav">
<a href="http://groups.yahoo.com/group/amibroker/messages;_ylc=X3oDMTJlYmkzZW5qBF9TAzk3MzU5NzE0BGdycElkAzEwMTA2OTIEZ3Jwc3BJZAMxNzA1NjMyMTk4BHNlYwNmdHIEc2xrA21zZ3MEc3RpbWUDMTE2Nzc0Mjc4MQ--">Messages</a>
| <a href="http://groups.yahoo.com/group/amibroker/files;_ylc=X3oDMTJmYWw3am1pBF9TAzk3MzU5NzE0BGdycElkAzEwMTA2OTIEZ3Jwc3BJZAMxNzA1NjMyMTk4BHNlYwNmdHIEc2xrA2ZpbGVzBHN0aW1lAzExNjc3NDI3ODE-">Files</a>
| <a href="http://groups.yahoo.com/group/amibroker/photos;_ylc=X3oDMTJlcjJucHQzBF9TAzk3MzU5NzE0BGdycElkAzEwMTA2OTIEZ3Jwc3BJZAMxNzA1NjMyMTk4BHNlYwNmdHIEc2xrA3Bob3QEc3RpbWUDMTE2Nzc0Mjc4MQ--">Photos</a>
| <a href="http://groups.yahoo.com/group/amibroker/links;_ylc=X3oDMTJmZ2lvdXRuBF9TAzk3MzU5NzE0BGdycElkAzEwMTA2OTIEZ3Jwc3BJZAMxNzA1NjMyMTk4BHNlYwNmdHIEc2xrA2xpbmtzBHN0aW1lAzExNjc3NDI3ODE-">Links</a>
| <a href="http://groups.yahoo.com/group/amibroker/database;_ylc=X3oDMTJjcThvZXVwBF9TAzk3MzU5NzE0BGdycElkAzEwMTA2OTIEZ3Jwc3BJZAMxNzA1NjMyMTk4BHNlYwNmdHIEc2xrA2RiBHN0aW1lAzExNjc3NDI3ODE-">Database</a>
| <a href="http://groups.yahoo.com/group/amibroker/calendar;_ylc=X3oDMTJkOTRsaTBpBF9TAzk3MzU5NzE0BGdycElkAzEwMTA2OTIEZ3Jwc3BJZAMxNzA1NjMyMTk4BHNlYwNmdHIEc2xrA2NhbARzdGltZQMxMTY3NzQyNzgx">Calendar</a>
</div>
<!-- |**|end egp html banner|**| -->
<!-- Do not have place to put it yet -->
<div id="ygrp-grft">
<!-- |**|begin egp html banner|**| -->
Please note that this group is for discussion between users only.<BR>
<BR>
To get support from AmiBroker please send an e-mail directly to <BR>
SUPPORT {at} amibroker.com<BR>
<BR>
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:<BR>
<a href="http://www.amibroker.com/devlog/">http://www.amibroker.com/devlog/</a><BR>
<BR>
For other support material please check also:<BR>
<a href="http://www.amibroker.com/support.html">http://www.amibroker.com/support.html</a><BR>
<!-- |**|end egp html banner|**| -->
</div>
<!-- yahoo logo -->
<!-- |**|begin egp html banner|**| -->
<div id="ygrp-ft">
<a href="http://groups.yahoo.com/;_ylc=X3oDMTJkNG45bWsxBF9TAzk3NDc2NTkwBGdycElkAzEwMTA2OTIEZ3Jwc3BJZAMxNzA1NjMyMTk4BHNlYwNmdHIEc2xrA2dmcARzdGltZQMxMTY3NzQyNzgx">
<img src="http://us.i1.yimg.com/us.yimg.com/i/yg/img/logo/ma_grp_160.gif" height="15" width="106" border="0" alt="Yahoo! Groups"></a> <br>
<a href="http://groups.yahoo.com/group/amibroker/join;_ylc=X3oDMTJmdm1wY21wBF9TAzk3NDc2NTkwBGdycElkAzEwMTA2OTIEZ3Jwc3BJZAMxNzA1NjMyMTk4BHNlYwNmdHIEc2xrA3N0bmdzBHN0aW1lAzExNjc3NDI3ODE-">Change settings via the Web</a> (Yahoo! ID required) <br>
Change settings via email: <a href="mailto:amibroker-digest@xxxxxxxxxxxxxxx?subject=Email Delivery: Digest">Switch delivery to Daily Digest</a> | <a href = "mailto:amibroker-traditional@xxxxxxxxxxxxxxx?subject=Change Delivery Format: Traditional">Switch format to Traditional</a> <br>
<a href="http://groups.yahoo.com/group/amibroker;_ylc=X3oDMTJkbDY5M3Y0BF9TAzk3NDc2NTkwBGdycElkAzEwMTA2OTIEZ3Jwc3BJZAMxNzA1NjMyMTk4BHNlYwNmdHIEc2xrA2hwZgRzdGltZQMxMTY3NzQyNzgx">
Visit Your Group
</a> |
<a href="http://docs.yahoo.com/info/terms/">
Yahoo! Groups Terms of Use </a> |
<a href="mailto:amibroker-unsubscribe@xxxxxxxxxxxxxxx?subject=">
Unsubscribe </a>
</div> <!-- |**|end egp html banner|**| -->
</div> <!-- ygrp-msg -->
<!-- Sponsor -->
<!-- |**|begin egp html banner|**| -->
<div id="ygrp-sponsor" style="width:140px;float: left; clear: none; margin-left: 5px; background:white; margin-bottom:25px ;position:absolute; top:0; right: 0;">
<!-- Network content -->
<!-- Start vitality -->
<div id="ygrp-vital">
<div id="vithd">Recent Activity</div>
<ul style="list-style-type:none; padding: 0; margin: 2px 0;">
<li style="clear: both;">
<div class="ct" style="float: right;"><span style="display:none"> </span>31</div>
<div class="cat"><a href="http://groups.yahoo.com/group/amibroker/members;_ylc=X3oDMTJmOHZqZnJuBF9TAzk3MzU5NzE0BGdycElkAzEwMTA2OTIEZ3Jwc3BJZAMxNzA1NjMyMTk4BHNlYwN2dGwEc2xrA3ZtYnJzBHN0aW1lAzExNjc3NDI3ODE-">New Members</a></div>
</li>
</ul>
<a href="http://groups.yahoo.com/group/amibroker;_ylc=X3oDMTJlcDlzZ29rBF9TAzk3MzU5NzE0BGdycElkAzEwMTA2OTIEZ3Jwc3BJZAMxNzA1NjMyMTk4BHNlYwN2dGwEc2xrA3ZnaHAEc3RpbWUDMTE2Nzc0Mjc4MQ--">
Visit Your Group </a>
</div>
<div id="hd">SPONSORED LINKS</div>
<div id="ov">
<ul>
<li><a href="http://groups.yahoo.com/gads;_ylc=X3oDMTJjMXZhNWJjBF9TAzk3MzU5NzE0BF9wAzEEZ3JwSWQDMTAxMDY5MgRncnBzcElkAzE3MDU2MzIxOTgEc2VjA3NsbW9kBHN0aW1lAzExNjc3NDI3ODI-?t=ms&k=Investment+management+software&w1=Investment+management+software&w2=Investment+property+software&w3=Investment+software&w4=Investment+tracking+software&w5=Return+on+investment+software&c=5&s=164&g=2&.sig=nrSHVa0ZRDQLgOWzokvekg">Investment management software</a></li>
<li><a href="http://groups.yahoo.com/gads;_ylc=X3oDMTJjYTE1YW1zBF9TAzk3MzU5NzE0BF9wAzIEZ3JwSWQDMTAxMDY5MgRncnBzcElkAzE3MDU2MzIxOTgEc2VjA3NsbW9kBHN0aW1lAzExNjc3NDI3ODI-?t=ms&k=Investment+property+software&w1=Investment+management+software&w2=Investment+property+software&w3=Investment+software&w4=Investment+tracking+software&w5=Return+on+investment+software&c=5&s=164&g=2&.sig=7zUakU9l5qmUoMS6SYHEKw">Investment property software</a></li>
<li><a href="http://groups.yahoo.com/gads;_ylc=X3oDMTJjdWU3azdzBF9TAzk3MzU5NzE0BF9wAzMEZ3JwSWQDMTAxMDY5MgRncnBzcElkAzE3MDU2MzIxOTgEc2VjA3NsbW9kBHN0aW1lAzExNjc3NDI3ODI-?t=ms&k=Investment+software&w1=Investment+management+software&w2=Investment+property+software&w3=Investment+software&w4=Investment+tracking+software&w5=Return+on+investment+software&c=5&s=164&g=2&.sig=3EQ-MnezWlucLtvQB57EXw">Investment software</a></li>
<li><a href="http://groups.yahoo.com/gads;_ylc=X3oDMTJjdjc0cm1oBF9TAzk3MzU5NzE0BF9wAzQEZ3JwSWQDMTAxMDY5MgRncnBzcElkAzE3MDU2MzIxOTgEc2VjA3NsbW9kBHN0aW1lAzExNjc3NDI3ODI-?t=ms&k=Investment+tracking+software&w1=Investment+management+software&w2=Investment+property+software&w3=Investment+software&w4=Investment+tracking+software&w5=Return+on+investment+software&c=5&s=164&g=2&.sig=r29bCiVu_2PTbV65aV1pKg">Investment tracking software</a></li>
<li><a href="http://groups.yahoo.com/gads;_ylc=X3oDMTJjYW92YTFmBF9TAzk3MzU5NzE0BF9wAzUEZ3JwSWQDMTAxMDY5MgRncnBzcElkAzE3MDU2MzIxOTgEc2VjA3NsbW9kBHN0aW1lAzExNjc3NDI3ODI-?t=ms&k=Return+on+investment+software&w1=Investment+management+software&w2=Investment+property+software&w3=Investment+software&w4=Investment+tracking+software&w5=Return+on+investment+software&c=5&s=164&g=2&.sig=0NUuwPlHI2CRkyD1Rm6WEg">Return on investment software</a></li>
</ul>
</div>
<!-- Network content -->
<div id="nc">
<div class="ad">
<div id="hd1">Yahoo! News</div>
<p><a href="http://us.ard.yahoo.com/SIG=12ivb530d/M=493064.9803190.10510181.8674578/D=groups/S=1705632198:NC/Y=YAHOO/EXP=1167749982/A=3848601/R=0/SIG=12tmuav8s/*http://news.yahoo.com/i/762;_ylt=A9FJqarbuq5EzPEAcQSs0NUE;_ylu=X3oDMTA2NWJlcmlsBHNlYwN0bg--">Entertainment News</a></p>
<p>The latest on stars,</p>
<p>movies, and more</p> </div>
<div class="ad">
<div id="hd1">Yahoo! TV</div>
<p><a href="http://us.ard.yahoo.com/SIG=12i104rg9/M=493064.9803235.10510228.8674578/D=groups/S=1705632198:NC/Y=YAHOO/EXP=1167749982/A=4299915/R=0/SIG=11as379aq/*http://apprentice.tv.yahoo.com/trump/06/">The Apprentice</a></p>
<p>Get exclusive clips,</p>
<p>Recaps & photos.</p> </div>
<div class="ad">
<div id="hd1">Search Ads</div>
<p><a href="http://us.ard.yahoo.com/SIG=12irg68jr/M=493064.9803227.10510220.8674578/D=groups/S=1705632198:NC/Y=YAHOO/EXP=1167749982/A=3848641/R=0/SIG=1312g85fq/*http://searchmarketing.yahoo.com/arp/srchv2.php?o=US2003&cmp=Yahoo&ctv=Groups2&s=Y&s2=&s3=&b=50">Get new customers.</a></p>
<p>List your web site</p>
<p>in Yahoo! Search.</p> </div>
</div>
</div> <!-- |**|end egp html banner|**| -->
<div style="clear:both; color: #FFF; font-size:1px;">.</div>
</div> <img src="http://geo.yahoo.com/serv?s=97359714/grpId=1010692/grpspId=1705632198/msgId=104775/stime=1167742781/nc1=3848601/nc2=4299915/nc3=3848641" width="1" height="1"> <br>
<span style="color: white;">__,_._,___</span>
<!--~-|**|PrettyHtmlEnd|**|-~-->
</body>
<!--~-|**|PrettyHtmlStart|**|-~-->
<head>
<style type="text/css">
<!--
#ygrp-mlmsg {font-size:13px; font-family: arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial,helvetica,clean,sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;*font-size:100%;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family: Georgia;
}
#ygrp-text p{
margin: 0 0 1em 0;
}
#ygrp-tpmsgs{
font-family: Arial;
clear: both;
}
#ygrp-vitnav{
padding-top: 10px;
font-family: Verdana;
font-size: 77%;
margin: 0;
}
#ygrp-vitnav a{
padding: 0 1px;
}
#ygrp-actbar{
clear: both;
margin: 25px 0;
white-space:nowrap;
color: #666;
text-align: right;
}
#ygrp-actbar .left{
float: left;
white-space:nowrap;
}
.bld{font-weight:bold;}
#ygrp-grft{
font-family: Verdana;
font-size: 77%;
padding: 15px 0;
}
#ygrp-ft{
font-family: verdana;
font-size: 77%;
border-top: 1px solid #666;
padding: 5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom: 10px;
}
#ygrp-vital{
background-color: #e0ecee;
margin-bottom: 20px;
padding: 2px 0 8px 8px;
}
#ygrp-vital #vithd{
font-size: 77%;
font-family: Verdana;
font-weight: bold;
color: #333;
text-transform: uppercase;
}
#ygrp-vital ul{
padding: 0;
margin: 2px 0;
}
#ygrp-vital ul li{
list-style-type: none;
clear: both;
border: 1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight: bold;
color: #ff7900;
float: right;
width: 2em;
text-align:right;
padding-right: .5em;
}
#ygrp-vital ul li .cat{
font-weight: bold;
}
#ygrp-vital a {
text-decoration: none;
}
#ygrp-vital a:hover{
text-decoration: underline;
}
#ygrp-sponsor #hd{
color: #999;
font-size: 77%;
}
#ygrp-sponsor #ov{
padding: 6px 13px;
background-color: #e0ecee;
margin-bottom: 20px;
}
#ygrp-sponsor #ov ul{
padding: 0 0 0 8px;
margin: 0;
}
#ygrp-sponsor #ov li{
list-style-type: square;
padding: 6px 0;
font-size: 77%;
}
#ygrp-sponsor #ov li a{
text-decoration: none;
font-size: 130%;
}
#ygrp-sponsor #nc {
background-color: #eee;
margin-bottom: 20px;
padding: 0 8px;
}
#ygrp-sponsor .ad{
padding: 8px 0;
}
#ygrp-sponsor .ad #hd1{
font-family: Arial;
font-weight: bold;
color: #628c2a;
font-size: 100%;
line-height: 122%;
}
#ygrp-sponsor .ad a{
text-decoration: none;
}
#ygrp-sponsor .ad a:hover{
text-decoration: underline;
}
#ygrp-sponsor .ad p{
margin: 0;
}
o {font-size: 0; }
.MsoNormal {
margin: 0 0 0 0;
}
#ygrp-text tt{
font-size: 120%;
}
blockquote{margin: 0 0 0 4px;}
.replbq {margin:4}
-->
</style>
</head>
<!--~-|**|PrettyHtmlEnd|**|-~-->
</html><!--End group email -->
------=_Part_77511_25939508.1167741600013--
--
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.5.432 / Virus Database: 268.16.2/613 - Release Date: 1/1/2007 2:50 PM
|