PureBytes Links
Trading Reference Links
|
A good reference, Ron. I had forgotten where I found that info.
One way to avoid having a huge file is to make different files from
different studies. You can specify the filename, so you can make as
many files as you need ro want. I use the date as the file name, so I
get one file per day. The following statement does this :
FileAppend("c:\omega\dailyrpt\"+NumtoStr(date,0) + ".rpt", NewLine
+ [whatever you want]
donc
>>>>Subject: Re: Where is FileAppend?
Date: Sun, 14 Dec 97 16:38:49 +0000
From: Ron Augustine <RonAug@xxxxxxxx>
To: cash@xxxxxxxxxxx, omega-list@xxxxxxxxxx
In Power-Editor, click the Function-Wizard icon, then select the "File
Writing" category, then highlight "File Append" in the right window --
description is at bottom of window...
File Append continually adds to a file, each time TS is re-started and
anytime the Function is accessed from any chart-- A file can get quite
large, very quickly. Thus, the need for "File Delete", to kill an old
file before creating (appending) a new one...
<<<<
|