PureBytes Links
Trading Reference Links
|
Yuki,
The blank line may be colored also.
The width may ba arranged through "" or " " [spacebars inside]
The caption of the blank line may be empty "".
COND1=MACD()>Signal();
COND2=StochD()>50;
COND3=RSI()>50;
Filter=COND1 OR COND2 OR COND3;
AddColumn(COND1,"COND1",1.0);
AddTextColumn(" "," ",1,1,colorBlack);// ARRANGE THE WIDTH
WITH " "
AddColumn(COND2,"COND2",1.0);
AddTextColumn(""," ",1,1,colorRed);
AddColumn(COND3,"COND3",1.0);
AddTextColumn(""," ",1,1,colorBlack);
AddColumn(COND1 AND COND2 AND COND3,"COND",1.0);
AddTextColumn(""," ",1,1,colorGreen);
Dimitris Tsokakis
--- In amibroker@xxxxxxxxxxxxxxx, Yuki Taga <yukitaga@xxxx> wrote:
> I am interesting in doing what the subject line says. ^^_^^
>
> I realize I can simply combine all the conditions I'm looking for
> into one large 'filter' statement (or at least I believe I can do
> this). But is there a way to sort the output, so that the results of
> particular parts of the filter statement are grouped together for
> easy perusal? If possible, a blank line between grouped returns
> would be nice, although I do not see how this can be done at the
> moment.
>
> 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/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/
|