PureBytes Links
Trading Reference Links
|
One way I've been doing this is to set up the identical conditions
as the Exploration is seeking in an Indicator AFL script that
creates a price plot. Color the bars blue or some other color when
your conditions are met.
So say its a when the 20MA is rising and above the 50MA:
col=IIf(ROC(MA(C,20),1)>0 AND MA(C,20)>MA
(C,50),colorBlue,colorBlack);
Plot( Close, "OHLC", col, 132);
-ace
--- In amibroker@xxxxxxxxxxxxxxx, "jaykwok425" <jaykwok@xxxx> wrote:
> Hi,
>
> Is there a way to mark explorations on a chart just as trades are
> marked on a backtest?
>
> Thanks,
>
> j
------------------------ 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/
|