[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Creating ASCII data file via PRINT; plotting intraday ASCII



PureBytes Links

Trading Reference Links

 I'm not sure that it makes any difference and I don't know how data
is stored in TS20000 but the last 2 columns in my intraday data are
"U" and "D" for upticks and downticks. As far as I know OI is not
broadcast intraday and volume is only estimated.
  When calulating volume intraday, TS adds "U"
and "D" together and calls it volume which of course it actually is not.
  My point is that TS intraday charting may be confused by a header
containing "V" and "OI". as opposed to "U" and "D". Just a shot in
the dark. Other than that, I don't see any format problems.
  As a side, TS often does unexplainable things when plotting ascii
data in charts. Often having a BMI chart and an ascii chart open at
the same time(in the offline server of course) causes the ascii chart to
plot incorrectly. And in some
of my workspaces, the same ascii data won't plot properly but the
same data plots properly in another workspace. Go figure? 

dave stanley

<<<
If I create an indicator with the following code:

	PRINT(File("C:\Log\DataSame.asc"), DATE:6:0, ",", TIME:4:0, ",",
		O:4:4, ",", H:4:4, ",", L:4:4, ",", C:4:4, ",", V:6:0, ",",
		OPENINT:6:0);
>>>