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

Re: System name on charts



PureBytes Links

Trading Reference Links

Sorry for this repost but read code as:

input: len(20);
var: K(""), hi(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;