PureBytes Links
Trading Reference Links
|
Sorry-- I forgot to add Txt(0) in var: txt(0);
Chris Emery wrote:
>
> Wayne ..
> Cannot get below to verify..
> Regards
> Chris
>
> >Sorry for this repost but read code as:
> >
> >input: len(20);
> >var: K(""), hi(0), txt(0);
> >
> >K=GetSymbolName;
> >
> >if LastBarOnChart then begin
> > Hi = Highest(H,Len);
> > if 2=1 then plot1(c,"");
> > Txt = Text_New(D,Time,hi,K);
> > Text_SetStyle(Txt,1,1);
> > Text_SetColor(Txt,Tool_red);
> >end;
> >
> >
|