PureBytes Links
Trading Reference Links
|
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
Attachment:
Description: "ADVANCING ISSUES ALERT.ELS"
|