PureBytes Links
Trading Reference Links
|
I am trying to put a "tab" on days with certain conditions. Since I
don't know how to do that I am trying to do it sequentially, that is
one day after the next, but that doesn't work either. Here is my
code for part of the system. Can someone put me on the right path.
I tried to tab with the date function, but it seems too complicated.
What is wrong here.
BTW how can I show only the first of days 1 and 2 ?
D1L=L==LLV(L,10);
D1C=C==ValueWhen(D1L,C,1); /* close of Day 1 */
D2=BarsSince(D1L)>8 AND L<D1L OR L<D1C OR C<D1C; /* condition for
Day 2 */
D2C=C==ValueWhen(D2,C,1); /* close of day 2) */
Plot(C,"JK's System",1,128);
PlotShapes(IIf(D1C,shapeUpArrow,shapeNone) ,colorBrightGreen);
PlotShapes(IIf(D2C,shapeUpArrow,shapeNone) ,colorBlue);
Thanks guys/gals
Hrebert
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
------------------------ 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
---------------------------------------------------------------------~->
Yahoo! Groups Links
To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|