SI
SI
discoversearch

We've detected that you're using an ad content blocking browser plug-in or feature. Ads provide a critical source of revenue to the continued operation of Silicon Investor.  We ask that you disable ad blocking while on Silicon Investor in the best interests of our community.  If you are not using an ad blocker but are still receiving this message, make sure your browser's tracking protection is set to the 'standard' level.
Strategies & Market Trends : TA-Quotes Plus

 Public ReplyPrvt ReplyMark as Last ReadFilePrevious 10Next 10PreviousNext  
To: Gary Lyben who wrote (6579)9/18/1998 7:12:00 PM
From: Roy Yorgensen  Read Replies (3) of 11149
 
Gary, Here is the scan again, don't know what happened the first time.

Sorry for any confusion
TIA
Roy

Input"Issue List.lst";
Output"!Morning DOJI Star.lst";
Integer i,Start,End,NumDays; //For back test loop
Start:=-0; // Set to Oldest day for loop
End:=-0; // Set to Most recent day for loop
NumDays:=0; // Set to number of days for MovAvg etc.
DaystoLoad((Start*-1)+10);
For i=start to end
DO
//Black Body first day
If
Close(i-2)<Open(i-2)And //Black body
(Open(i-2)-Close(-2))>Open(i-2)*.01 //Longer Body
Then
//Gapping Body second day
If
Open(i-1)<Close(i-2)and
Open(i-1)<Open(i)
//Close(i-1)=Open(i-1)
Then
If
Abs(Close(-1)-Open(-1))<Open(-1)*.01 //DOJI body
//Or
//Open(i-1)=Close(i-1)
Then
//White body third day
If
Close(i)>Open(i)and //White body
Close(i)-Open(i)>Open(i)*.03 //Longer body
Then
// Down Trend Previously
If
Close(i-1)<Close(i-2)and
Close(i-2)<Close(i-3)and
Close(i-3)<Close(i-4)and
Close(i-4)<Close(i-5)//and
//Close(i-5)<Close(i-6)
//MovAvg(i,5,Cl)<MovAvg(i-5,5,Cl)
Then
PrintLn Symbol,",",Date(i),",","Morning Star" ,",","Reversal at Bottom";
//PrintLn Open(i-2),",",Close(i-2),",",Open(i-1),",",Close(i-1),",",Open(i),",",Close(i);
EndIf;
EndIf;
EndIf;
EndIf;
EndIf;

Next i;
Report TOU ViolationShare This Post
 Public ReplyPrvt ReplyMark as Last ReadFilePrevious 10Next 10PreviousNext