PureBytes Links
Trading Reference Links
|
You can simply create a 100 tick chart and count the bars in a day.
The code:
if Date <> Date[1] then begin
Print(Date[1]:7:0, CurrentBar - Value1:8:0);
Value1 = CurrentBar;
end;
will print a list of the number of bars in each day.
Bob Fulks
At 01:56 PM 5/6/2005, you wrote:
> im trying to find info on "how many ticks per day a particular symbol
>would have",,
>
> i want to convert some" time based" bars to "tick based" bars,
> i.e. - 5min bar to ??? tick bar..
>
> im just new to TS8.1, so don't know if this info is availible, as it was
>when i was using TS4 with DBC...
|