PureBytes Links
Trading Reference Links
|
Not sure what version you have, but if yours has the function for barstatus,
you can set up a big dot plot that only plots if it is not the last tick of
a bar, e.g.,
if barstatus(1)<>2 then plot1... else noplot(1);
I used to use this to plot indicator values rounded to the nearest tick for
display in scaling.
Or you could use text or a tl, but realtime text on fast markets is a pain,
imho. Or another thing I used for a while is simply coloring the close
yellow while the bars are white, or whatever colors work for you.
Chris
----- Original Message -----
From: "Phil Bailey" <baileyp@xxxxxxxxxxx>
To: <omega-list@xxxxxxxxxx>
Sent: Friday, March 25, 2005 10:38 AM
Subject: Last Bar Close Visual Aid
> Greetings,
>
> Does anyone know how to Accent the 'actual' realtime close of the last bar
> (only)
> while its moving? Either you have to have very few (big) bars on graph or
> really
> strain to see price realtime activity.
>
> What would be good, for those of us who have bifocals or worse, would be
the
> buy/sell signal triangles
> that map the close: except adjustable (bigger) size and realtime. Maybe it
> would
> just be a distraction, but there are certain periods it seem like it could
> provide pattern informatation.
>
>
> Thanks,
> Phil
>
|