PureBytes Links
Trading Reference Links
|
You can create an indicator to write an ascii file of whatever you like,
otherwise no...nothing that will update real time.
Chris
an example...
Input: DIR("c:\"), NAME("filename"), oval(o), hval(h), Lval(l),Cval(c);
If currentbar = 1 then filedelete(DIR+name +".txt");
If currentbar >= 1 then FileAppend(DIR+name +".txt",
NumToStr(month(date),0) +"/"+ NumToStr(FracPortion(date/100)*100,0) + "/"
+ NumToStr(1900+year(date),0) +","+ NumToStr(oval,4) + "," +
NumToStr(hval,4) + "," + NumToStr(lval,4) + "," + NumToStr(cval,4) +
newline );
if c<> c then plot1(1," ");
----- Original Message -----
From: <cash@xxxxxxxxxxx>
To: "omega List" <omega-list@xxxxxxxxxx>
Sent: Thursday, September 20, 2001 9:30 PM
Subject: Baskets or Composites?
> Does TS2K have the facility for baskets or composite symbols? If
> so, how do I get them?
>
> Cash
>
>
>
> "Buy Low, Sell High"
> (If this statment is used for financial gain, I am entitled to 10% of all
profits. ;) )
>
|