PureBytes Links
Trading Reference Links
|
INPUTS: StochHi(90),
StochLow(20),
Len(14);
value1 = SlowKCustom(H, L, C, Len);
condition1 = value1 crosses over StochHi;
condition2 = value1 crosses under StochLow;
IF condition1 or condition2 THEN begin
Print(printer,"");
Print(printer,"");
If commoditynumber = 5035 then print(printer, "AAPL ");
If commoditynumber = 5005 then print(printer, "ADBE ");
If commoditynumber = 5002 then print(printer,"AMAT ");
If commoditynumber = 5004 then print(printer, "AMD ");
PRINT(Printer,date:6:0, Time:5:0, " Stochastic=", value1:3:2, " Closing
Price=", C:4:2 ) ;
end;
Plot1(Value1,"SlowKCust");
Plot2(SlowDCustom(H, L, C, Len),"SlowDCust");
Plot3(StochLow,"Plot3");
Plot4(StochHi,"Plot4");
-----Original Message-----
From: Stewart Taylor <staylor@xxxxxxx>
To: omega-list@xxxxxxxxxx <omega-list@xxxxxxxxxx>
Date: Wednesday, October 07, 1998 10:54 AM
Subject: Chart Scan Alert (help please)
>
>Before I start out on a dead end..... I keep a single oscillator across a
>variety of intraday charts. I would be very interested in having trade
>station print out an hourly chart (while Im laying out drunk or some such
>other important trading activity) of any commodity whose oscillator value
>is below 30 or above 70.
>
>I see how it is possible to set it up to print a chart whose oscillator
>turned on the final hour of trading but not the other.
>
>Anyway, here is my single ultra sophisticated super top secret (traders
>eyes only) stochastic that I use. Any help (even if its just to tell me
>that Im full of whatever) would be appreciated.
>
>Thanks,
>Stewart.
>
>Inputs: Length (14);
>Plot1 (@cqgsmavg(@slowk(length),10),"slowk");
>Plot2 (@cqgsmavg(@cqgsmavg(@slowk(length),10),3),"slowd");
>Plot3 (20,"plot3");
>Plot4 (80,"plot4");
>Stewart Taylor
>Taylor Fixed Income Outlook
>Voice: 501-219-9774
>Fax: 501-228-0963
>E-Mail: staylor@xxxxxxx
>Web Site: http://www.cei.net/~staylor/
>
>
|