PureBytes Links
Trading Reference Links
|
I sent it as a function. Here is one way I Plot it. I also may use the function in a system. Ie is confluence=-9 then protective stop = h +1 point; ect
value42= ErrNum + MomNum+TCNum;
IF value42 >0 and TC >0 THEN BEGIN
Plot1(value42,"Bull");
END;
IF value42<0 and TC < 0 THEN BEGIN
PLOT2(VALUE42,"Bear-");
END;
If (value42 > 0 and tc <0) or (value42 <0 and tc>0) then begin
PLOT3(value42,"Yellow");
end;
If value42 = 0 then begin
PLOT4(value42,"ZERO");
end;
-----Original Message-----
From: joachim@xxxxxxxxxxxx [SMTP:joachim@xxxxxxxxxxxx]
Sent: Tuesday, November 10, 1998 11:49 AM
To: Dale Legan
Subject: Re: Construction of trading signals
Dale....I did not have any luck with your confluence indicator and function. Could you
repost these to me. On looking at the confulence indicator, I did not see any plot
statements???
John
|