PureBytes Links
Trading Reference Links
|
Hello Jim,
input:ntime(1200),btime(1400),ctime(1600);
var:noon(0),bond(0),cash(0);
if currentbar=1 then begin noon = text_new(d,1,0,"noon time");
text_setcolor(noon,6);text_setstyle(noon,0,2);end;
if currentbar=1 then begin bond = text_new(d,1,0,"bond close");
text_setcolor(bond,6);text_setstyle(bond,0,2);end;
if currentbar=1 then begin cash = text_new(d,1,0,"cash close");
text_setcolor(cash,6);text_setstyle(cash,0,2);end;
if time=ntime then begin text_setlocation(noon,d,ntime,c);end;
if time=btime then begin text_setlocation(bond,d,btime,c);end;
if time=ctime then begin text_setlocation(cash,d,ctime,c);end;
plot1(c,"");
Wednesday, December 29, 2004, 11:53:23 AM, you wrote:
> A few years ago I read of a Condition indicator that I think either Bob
> Fulks or Mark Brown had developed. It is not complicated but involves using
> features that I don't normally use. It displays the status of Conditions on
> the data1 chart. It answers the question as to which condition is not met
> and eliminates the need to run a separate calculation of them. Anyone know
> of this?
> thanks,
> Jim
--
Best regards,
Mark mailto:qpwoeirutyalskdjfhgmznxbcv_markbrown_omegalist@xxxxxxxxxxxxx
|