PureBytes Links
Trading Reference Links
|
This is probably true in the real time version. I use the
EOD mode and daily charts. I then update every 5 min using
AMIquote from Yahoo. I set the AA scan for 5 min. This gives the
buys and sells during the day and with the code I get the
time they came in. In the EOD mode you only get the date in
the date time column. I find the daily chart gives a better
picture of the stock action and it builds during the day
updating every 5 min.
Cliff s
> Hello,
>
> Thank you for the code snippet...but..The alertif() already
returns the
> time the signal is generated....check the image attached.
>
> I am using beta 4.28.1
>
>
> Anthony
>
>
>
> "slyde88 " wrote:
>
> > For All:
> >
> > Here is a little code snipit to return the
> > current time. It can be added to tha Alertif function
> > to indicate the time the alert came in.
> >
> > EnableScript("jscript");
> >
> > <%
> >
> > Now=new Date();
> > CTS=Now.toTimeString();
> > AFL("CurTimeStr")=CTS.substring(0,5);
> >
> > %>
> >
> > note: CurTimeStr is a string.
> >
> > Alertif(Buy==1,"",("Buy "+ CurTimeStr),1,1,0);
> >
> >
> > Cliff s
> >
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|