[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re : Plotting errors?



PureBytes Links

Trading Reference Links

Dans un courrier daté du 03/09/98 19:45:22  , vous avez écrit :

<< ***************************************************************************
 Pierre,
 
 Please indulge someone who is somewhat EL impaired.
 
 I have been trying to figure out how to include your refresh code into
 a PB example. Take, for example, the canned TS KeyReversalDn.
 
 If PercentR(10)[1] >= 80
 and H>H[1] and C<C[1] then begin
         Plot1(High,"PBHigh");
         Plot2(Low,"PBLow");
 End;
 
 Would you please rewrite this example including your refresh code?
 TIA, Ian.
  >>

Here it is:

var:k(0);
for k=10 downto 0 begin
 If PercentR(10)[1] >= 80 and H>H[1] and C<C[1] then begin
     Plot1[k](High[k],"PBHigh");
     Plot2[k](Low[k],"PBLow");
 End;
End;

Sincerely,

Pierre Orphelin