PureBytes Links
Trading Reference Links
|
Yuki,
I suppose we speak for the posted code
Plot(C,"C",colorBlack,64);Title=Name();
for(x=5;x<20;x++)
{
S2=Sum(C<Ref(C,-3),x)==x;
Buy=s2==0 AND Ref(s2,-1);
PlotShapes((shapeHollowSmallCircle+shapePositionAbove)*s2,x);
PlotShapes(shapeUpArrow*Buy,colorBrightGreen);
Title=Title+WriteIf(s2,"["+WriteVal(x,1.0)+"]","");
}
The small circles are plotted over the s2 points, when the last x
bars fulfill the condition C<Ref(C,-3).
The colors are different for various x.
All these small circles are warnings that a Buy signal is coming from
the corner.
When your cursor is on a small circle, you may also read on the title
the value of x. [Tom DeMark has some technique to print the value of
x on the chart, I dont know how to do it, so I transfer this info on
the title]
See also the desctiption of a sequential system I have already posted
to the list [sooner or later it will ...appear]
Dimitris Tsokakis
--- In amibroker@xxxxxxxxxxxxxxx, Yuki Taga <yukitaga@xxxx> wrote:
> Hi DT,
>
> Saturday, August 30, 2003, 6:18:45 PM, you wrote:
>
> DT> You may find more details/techniques/strategies at
> DT> http://www.tomdemark.com/indin.htm
>
> I am missing one bit of information about this, I think. Prior to
> the buy signal, there are one or more small circles generated. Each
> of these seems to have a different color. Is there anything special
> to note about the different colors?
>
> Yuki
------------------------ 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/l.m7sD/LIdGAA/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/
|