PureBytes Links
Trading Reference Links
|
If you get a cell phone with Text Messaging, you can have the text messages
emailed to it. For example, with Sprint PCS phones, you pay an extra $5 a
month (maybe it's $10, can't remember). You send email to
yourphonenumber@xxxxxxxxxxxxxxxxxxxxxxx and it appears on your phone shortly
thereafter. Usually the delay is 5 seconds, sometimes it's 5 minutes but
it's a lot easier than making a call every hour. Message length is limited
to something like 150 chars. Verizon and AT&T probably have something
similar.
Kent
----- Original Message -----
From: "Roger Shepherd" <mailrs@xxxxxxxxxx>
To: <Omega-list@xxxxxxxxxx>
Sent: Sunday, December 22, 2002 6:10 PM
Subject: advancing issues e mail alert
Hello Omega-list,
I trade the oddball system and sometimes have to be away from my
computer during the day. I don't need to see the action but do need
to know what the advancing issues are doing to keep my trades going.
Attached is an els for ts2000i for an indicator which can be applied
to a 1 minute chart with the S&P as data 1 and advancing issues as
data 2. It sends an e-mail alert ( if you have enabled messaging on
the chart and on the program) which tells me what the advancing
issues are at 5 minutes before each hour.
I have opened an e-mail account with Yahoo which can be accessed by
telephone which will verbally read my e-mails to me. So I can
access my e-mail account 4 minutes before the hour and I make the
assumption that the advancing issues will not change much from 5
minutes before the hour to the hour. If a trade is indicated, I
still have time to call my broker and complete the trade on the hour.
Even if you don't trade the oddball, I thought this code and idea
might be helpful.
Text of els is below:
{***************************************
Written by Roger Shepherd 10/01/02
Description: Alert to send an email reporting hourly advancing issues
and price at 5 minutes before each hour. Data1 is S&P Data2 is advancing
issues
both plotted on 1 minute basis. Times are central time zone.
****************************************}
Var:TME(955),
SP(0), ADV(0),SPT(""),ADVT(""),TMT(""),TM(0);
If date <> date[1] then begin
tme = 855;
end;
SP = Close of Data1;
ADV = Close of Data2;
TM = time;
If time = TME then begin
SPT= NumToStr(SP, 2);
ADVT= NumToStr(ADV,0);
TMT = Numtostr(TM,0);
Alert (" Avancing issues are " + ADVT);
TME = TME[1] + 100;
End;
--
Best regards,
Roger mailto:mailrs@xxxxxxxxxx
|