PureBytes Links
Trading Reference Links
|
Here is a scenario that i am coming accross that in my opinion is a
strange behaviour.
1. I run a scan from 4 Sept 07 to 4 sept 07
2. i have a Buy conditoin
Buy=twentyDayHigh AND Ref(twentyDayHigh,-1) AND Ref(twentyDayHigh,-
2) AND ADX(14)>20 AND Close <50 AND MA(V,20)>200000;
3. i have a conditoinal statement that states that if it is a buy,
then add it to the watchlist
if(LastValue( Buy)==1) {
wlnumber = CategoryFind
("WoodiesCCI_Step1_20DayHigh", categoryWatchlist );
mysymbols = CategoryGetSymbols
(categoryWatchlist, wlnumber );
CategoryAddSymbol( "",
categoryWatchlist,wlnumber );
_TRACE("ABTrace adding long " + Name());
}
break;
4. the results that i get are AGIX and BELM on my results panel that
matches to 4 sept 07. However the stocks added to my watchlist are
the ones that are related to the signals matching the latest bar.
which is GPOR, INWK, LOOP, VTIV.
My understanding of the analysis window is that if i set my range to
whaterever date,bar, the signals generated should match only to that
range. in my case, the buy signals matches the range date and teh
last value of the signals matches the latestbar.
My Gripe: If the way the lastvalue works is is intended design, it
is not clarified in detail in the documentation wrt to the analysis
window.
My Question: how do i check the specific buy signal at a specific
date. is there a built in function or do i have to loop the array and
find the matching array value associated with the range.
Please note that this group is for discussion between users only.
To get 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/
|