PureBytes Links
Trading Reference Links
|
Sorry,maybe my question was misleading. I understand how to create an
exploration. The part I'm having difficulties with is how to express
the name of the custom indicator in the filter,AB doesn't seem to
recognize it and I keep getting error messages. I included the code
for the indicator to give people a chance to look at it and point out
for me how to assign a name to the indicator so I could use it in the
filter in the exploration. I'm not asking for anyone to write an
exploration for me. Thanks.--- In
amibroker@xxxxxxxxxxxxxxx, "wavemechanic" <timesarrow@xxx> wrote:
>
> http://www.amibroker.com/guide/h_exploration.html
> ----- Original Message -----
> From: triangle702000
> To: amibroker@xxxxxxxxxxxxxxx
> Sent: January 19, 2009 8:21 PM
> Subject: [amibroker] exploration for custom indicator
>
>
> I've built an indicator and I'd now like to run an exploration to
> find stocks where this indicator is meeting a condition,but I
dont
> know how to phrase it so the program recognizes the name of the
> indicator.How do I express the name of the indicator so the
> exploration can scan for it? I'd like the exploration to show
stocks
> where the value of the indicator is < 10. Thanks.
>
> Here's the indicator...
>
> _SECTION_BEGIN("weekly and daily RSI average");
>
>
>
>
>
> TimeFrameSet(inWeekly);//switch to weekly time frame
>
> w_rsi=RSI(2);//weekly rsi(2)
>
> TimeFrameRestore(); // restore time frame to original(daily)
>
>
>
>
> d_rsi=RSI(2);//daily rsi(2)
>
>
>
>
>
> wex= TimeFrameExpand(w_rsi,inWeekly);
> dex= TimeFrameExpand(d_rsi,inDaily);
>
> a= (wex + dex)/2;
>
> SetChartOptions(0,0,chartGrid10|chartGrid90);
> Plot(a,"daily and weekly average",colorYellow);
> _SECTION_END();
>
>
> ------------------------------------
>
> **** IMPORTANT ****
> This group is for the discussion between users only.
> This is *NOT* technical support channel.
>
> *********************
> TO GET TECHNICAL SUPPORT from AmiBroker please send an e-mail
directly to
> SUPPORT {at} amibroker.com
> *********************
>
> For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
> http://www.amibroker.com/devlog/
>
> For other support material please check also:
> http://www.amibroker.com/support.html
>
> *********************************
> Yahoo! Groups Links
>
>
>
>
>
> ---
> avast! Antivirus: Inbound message clean.
> Virus Database (VPS): 090119-0, 01/19/2009
> Tested on: 1/19/2009 8:28:01 PM
> avast! - copyright (c) 1988-2009 ALWIL Software.
> http://www.avast.com
>
------------------------------------
**** IMPORTANT ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
*********************
TO GET TECHNICAL SUPPORT from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
*********************
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
For other support material please check also:
http://www.amibroker.com/support.html
*********************************
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> 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/
|