PureBytes Links
Trading Reference Links
|
If you want to add date functions to all of your explorations, it can
be quite time consuming keeping the dates up-to-date in each code.
To alleviate this I find it much more simple to create and indicator,
lets call it "Variables" and code it as such:
varDay:=27;
varMonth:=1;
varYear:=2004;
In each exploration, in the filter add the code:
{... code}
AND DayOfWeek()>=FmlVar("Variables","varDay")
AND Month()>=FmlVar("Variables","varMonth")
AND Year()>=FmlVar("Variables","varYear")
This way, you only need to update the indicator variables instead of
every date in each exploration.
Hope this helps.
wabbit :D
--- In equismetastock@xxxxxxxxxxxxxxx, "Eduardo Castro"
<ecastro@xxxx> wrote:
> Sirs, I need your help about if it's possible include in an explorer
> formula a filter that discard stocks which doesn't traded the last
day
> (Day of the exploration). The idea is exclude stocks that not are
traded
> everyday.
> Thanks
> Eduardo
Yahoo! Groups Links
To visit your group on the web, go to:
http://groups.yahoo.com/group/equismetastock/
To unsubscribe from this group, send an email to:
equismetastock-unsubscribe@xxxxxxxxxxxxxxx
Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|