PureBytes Links
Trading Reference Links
|
Bert,
I ran your code and the date column is present in my explore.
Phsst
--- In amibroker@xxxxxxxxxxxxxxx, "bistrader" <bisteele@xxxx> wrote:
> Recently, I noticed that the date column is missing when I run an
> Automatic Analysis Explore. Following is an example. Help /
> direction would be appreciated.
>
> Bert
>
> //
> // Turtle Buy&Sell
> // Determine Turtle Buy & Sell Signals
> // One Month (22 days)
> //
> turtlebuy=IIf((C-HHV(C,22))>=0,1,0);
> //
> turtlesell=IIf((C-LLV(C,11))<=0,1,0);
> //
> turtlebuyon=Flip(turtlebuy, turtlesell);
> //
> //
> score=turtlebuyon;
> Filter=score >=1;
> //
> // Buy & Sell Logic
> //
> Buy = score>=1;
> //
> Sell = score<=0;
> //
> // Remove extra Buy signals between a Buy Signal and a Sell Signal
> // Remove extra Sell signals between a Sell Signal and a Buy Signal
> Buy = ExRem ( Buy , Sell );
> Sell = ExRem ( Sell , Buy );
>
>
> //Title=Date()+EncodeColor(colorRed)+" Turtle Buy "+WriteVal
> (turtlebuyon,1.0)+" ";
> //Plot(score,"Turtle Signal",6,1);
> Plot(turtlebuyon,Date()+" Turle Buy",4,5);
> //
> // My understanding is that the date is always listed unless
> // one adds code to remove it.
> AddTextColumn(FullName(),"FundName",1.0);
> AddColumn(turtlebuy,"Turtle Buy",1.0);
> AddColumn(turtlesell,"Turtle Sell",1.0);
> AddColumn(turtlebuyon,"Turtle Buy On",1.0);
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for your HP, Epson, Canon or Lexmark
Printer at MyInks.com. Free s/h on orders $50 or more to the US & Canada.
http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/mOAaAA/3exGAA/qnsNAA/GHeqlB/TM
---------------------------------------------------------------------~->
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|