PureBytes Links
Trading Reference Links
|
Hello Eduardo,
input:chart(5),tyme(5);
var:z(0),nextyme(0);
if d>d[1] then z=0;
z=z+1;
value1=z*chart;
plot1(value1,"bars");
if d>d[1]then nextyme=timetominutes(Sess1FirstBarTime)+tyme;
if timetominutes(t)>=nextyme then begin
nextyme=nextyme+tyme;
IF D=CURRENTDATE Then Begin
PRINT(date:6:0, Time:5:0, " TicksPerDay = ", value1:6:0, " C.N.",commoditynumber:6:0);
end;END;
IF D=CURRENTDATE Then Begin
IF CheckAlert Then Begin
IF (VALUE1=500)
or (VALUE1=1000)
or (VALUE1=1500)
or (VALUE1=2000)
or (VALUE1=2500)
or (VALUE1=3000)
or (VALUE1=3500)
or (VALUE1=4000)
or (VALUE1=4500)
or (VALUE1=5000)
Then Alert = TRUE;End;END;
EJM> Hello all,
EJM> Has anyone ever developed or know how should I start to create an Indicator
EJM> that counts how many 55 tick bars are in 1 day worth of data inside TS2000i.
EJM> the output could either be on a message log or in the chart itself.
EJM> Of course the indicator would be applied at an intraday chart with those
EJM> settings (55 tick bar).
EJM> the objective would be to compare missing data across different data feeds.
EJM> Many thanks in advance.
EJM> Eduardo J Motta
--
Best regards,
Mark mailto:markbrown@xxxxxxxxxxxxx
|