PureBytes Links
Trading Reference Links
|
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
<*> 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/
|