PureBytes Links
Trading Reference Links
|
What you can do as an intermediate solution is:
not put the tick-counter on your chart, but
open an extra chart with the same tick-solution,
put your tick-count indicator on it, put the style
to invisible bars or the subgraph on 'hidden',
put this fake chart with only the tick-counter
very small in a corner on your workspace.
Pete
----- Original Message -----
From: "Dominik Clauss" <dclauss@xxxxxxx>
To: "Abhijit Dey" <omegalist@xxxxxxxxxx>
Cc: <omega-list@xxxxxxxxxx>
Sent: Friday, June 17, 2005 10:30 PM
Subject: Re: Tick Counter for ts2ki
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
|