PureBytes Links
Trading Reference Links
|
Hi,
unfortunately I dont have a solution for your problem, but I can tell
you that it has nothing to do with your code - I´m experiencing the
same problem with all sorts of code. I did a googled for advise, but
the only thing I could find out was, that it has something to do with
the way the TS2Ki has been programmed...something with the graphic
engine....well, bottom line is, that nobody could help me.
Are you connecting ESignal to your Tradestation?
Regards,
D
Am 16.06.2005 um 16:57 schrieb Abhijit Dey:
I am really desperate. Tick charts a big part of my intraday
discretionary trading, and the indicator I have, which necessarily
need to update every tick, flashes my chart at every tick. Anyone
has something that doesn't do this? Something I can buy? AFAIK,
this is a ts2ki specific problem - I think it works fine in TS 8.x
etc. I need something for ts2ki.
This is what I have
var:
TickTxt(-1);
if(LastBarOnChart) then begin
if(TickTxt = -1 and CurrentBar > 1) then
TickTxt = Text_New(Date, MinutesToTime(TimeToMinutes(Time) +
2), Close + 0.10, "< " + NumToStr((Ticks[1] - Ticks), 0))
else if(TickTxt <> -1) then begin
Text_SetString(TickTxt, "< " + NumToStr((Ticks[1] - Ticks),
0));
TickTxt = Text_SetLocation(TickTxt, Date, MinutesToTime
(TimeToMinutes(Time) + 2), Close + 0.10);
end;
end;
Thanks,
Abhijit
|