PureBytes Links
Trading Reference Links
|
As others have commented using a binary indicator
and referencing it in a formula is a good way
to build/design a system.
ie.
tr:=Fml("system breakoutLS")=1;
I am wondering what approach others like to use when
building a system where more than one set of binary
switches
are used.
1. If the system is purely LONG, then one set of
switches works to enter/exit as in 1 or 0 for:
Fml("system breakoutL").
2. If the system is purly SHORT, then one set of
switches works to enter/exit as in 1 or 0 for:
Fml("system breakoutS").
3. If you want to combine the LONG and SHORT systems
into one indicator, this becomes an issue.
A.enterlong/exitlong, B.entershort/exitshort,
C.neither.
Fml("system breakoutLS")
BuyLong=2
SellLong=1
do nothing=0
CoverShort=-1
SellShort=-2
4. I suppose whatever standards a system developer
decides on will work.
The approach I am using is to create "helper"
Indicators that are TRUE/FALSE to
be used by the actual "System" Indicators.
Does the:
{
BuyLong=2
SellLong=1
do nothing=0
CoverShort=-1
SellShort=-2
} seem reasonable? Any alternatives for long and short
systems?
Thanks,
Chris
_______________________________
Do you Yahoo!?
Express yourself with Y! Messenger! Free. Download now.
http://messenger.yahoo.com
------------------------ Yahoo! Groups Sponsor --------------------~-->
Make a clean sweep of pop-up ads. Yahoo! Companion Toolbar.
Now with Pop-Up Blocker. Get it for free!
http://us.click.yahoo.com/L5YrjA/eSIIAA/yQLSAA/zMEolB/TM
--------------------------------------------------------------------~->
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/Metastockusers/
<*> To unsubscribe from this group, send an email to:
Metastockusers-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|