PureBytes Links
Trading Reference Links
|
when i explore over multible bars, i get results of the same ticker
multiple times because the filter signal would have been true for
those related bars. how do i filter out the duplicates so that i get
only the results outputted once even though i am exploring multiple
bars.
i thought there was a formula posted earlier by TJ for this earlier and
could not find it. the following is my exploration i am doing over 15
minute bars for today's date and i get duplicate ticker for different
timestamps for today.
higherVol=V>(EMA(V,15) *1.5);
Buy_true= IIf(DateNum()==LastValue(DateNum()) AND
HigherVol,True,False);
//
Filter=Buy=Buy_true>=1;
AddTextColumn(WriteVal(LastValue(Cum(Buy_true))),"No of Times its true
today");
------------------------------------
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/
|