(no subject)

Oct 21, 2008 18:30

{ Objective is to find Julie's stocks that show support to the up side in the last 30 minutes of trade.
hold over night and sell in the am opening MKT at the gap. One hour trading}

Inputs: price (close);

If time >= 1530 and time <= 1600 and volume >= 800000 and close > open *.70 then
begin
Condition1= open[1] > close[1] and open < close {reversal 1 bar}
and high - low > 1 {spread more than 1}
and close > close[1]*.50; {50% up from one bar}
end;

inputs: FastLength(8), SlowLength(200);
vars: FastMA(0), SlowMA(0);
FastMA = averageFC(Price, FastLength);
SlowMA = averageFC(Price, SlowLength);

begin

If condition1 and close >= FastMA and close < SlowMA then {price between 8 ma and 200 ma}

plot1(1,"70%")
else
plot1(0,"70%")

input: UpColor(green);
if Plot1 = 1 then
begin // radarscreen green color
SetPlotColor(1, black);
SetPlotBGColor(1, UpColor);

if plot1 = 1 then
alert ( "70%up");
end;

end;
Previous post Next post
Up