PureBytes Links
Trading Reference Links
|
Thanks for the suggestion. That option does make a difference with charts
loading less data. But it doesn't work in this example.
With the "maximize Calculation speed" unchecked, I applied the following to
see if there is a barnumber limitation:
if lastbaronchart then
begin
FileAppend("c:\test.txt",
getsymbolname+","+numtostr(barnumber,0)+NewLine);
buy this bar on close;
end;
The results are strange:
Using 1 minute bar compression with 30 days of historical data (around 6000
bars), all the symbols from the list are appended to file. At 150 days
(around 50K bars), however, symbols begin to disappear, and it is not
because those symbols have too many bars. Stranger still, if I redo the
same scan, I get different results: different symbols disappear. And
sometimes, I get all of the symbols.
Well, I could be an involuntary Omega debugger again, or, I can develop new
tools. I choose the latter.
Suppose I have one chart open with the chosen studies applied. Is there a
way to automatically type in the symbol from a symbol list file, and then
have the next symbol on the list automatically typed in as soon as the EL
code sends out a signal saying, "I'm finished"?
At 04:29 AM 8/20/2001, Alan Courchene wrote:
>Hi Craig,
>
> > Does this mean that the Workspace Assistant fails to
> > apply the studies if
> > the chart contains too much data?
>
>Not likely. WS assist will run slower with lots of
>data. The problem is most likely that you have the
>"maximize Calculation speed" option checked. Try
>Unchecking this option and try it again.
>
>BTW TS4.0 runs faster scans for me than 2000I.
>
>
>Alan C.
>
>
>
>
>
>
>
>
>
>
>
>--- Craig <craigbud@xxxxxxxxxxx> wrote:
> > Has anyone else experienced this:
> >
> > If you apply the Workspace Assistant to a workspace
> > containing a chart with
> > a large amount of history (1000 days of 5 minute
> > bars, for example), and
> > you apply the following test system:
> >
> > if lastbaronchart then
> > begin
> > buy this bar on close;
> > FileAppend("c:\test.txt",
> > GetSymbolName+","+ELDateToString(date)+NewLine);
> > end;
> >
> > or indicator:
> >
> > if lastbaronchart then FileAppend("c:\test.txt",
> > GetSymbolName+","+ELDateToString(date)+NewLine);
> >
> > only some symbols on the list are written.
> >
> > I shortened the size of the chart to 30 days and all
> > the symbols were
> > written to file.
> >
> > Does this mean that the Workspace Assistant fails to
> > apply the studies if
> > the chart contains too much data?
> >
>
>
>__________________________________________________
>Do You Yahoo!?
>Make international calls for as low as $.04/minute with Yahoo! Messenger
>http://phonecard.yahoo.com/
|