PureBytes Links
Trading Reference Links
|
------------------------------------------------------------------------
You cannot reply to this message via email because you have chosen not
to disclose your email address to the group.
To reply: http://groups.yahoo.com/group/equismetastock/post?act=reply&messageNum=5744
------------------------------------------------------------------------
I don't know if this formula can be of use but I plot it as an
indicator, that way I can see at a glance of if an idea has
potential, too much drawdown I oust it.....
Test of entry signal
signal:=BarsSince(put your low risk entry here);
{Signal is calculating how many bars since the trigger}
enter:=ValueWhen(1,signal=1,O);
{this is calculating the open of the day after the trigger occurred}
diff:=C-enter; {from your entry position to the current close}
perc:=enter*.01; {percent value for your entrance}
If(signal < 30 and signal >0,(diff / perc),0)
{The 30 is the time limit since there is no exit strategy}
Test of entry with an exit
signal:=BarsSince(put your low risk entry here);
{"signal" is calculating how many bars since the trigger}
exit:=if(put your exit strategy here),1,0);
{your exit}
enter:=ValueWhen(1,signal=1,O);
{This is calculating the open of the day after the trigger occurred}
diff:=C-enter; {from your entry position to the current close}
perc:=enter*.01; {percent value for your entrance}
If(exit=0 and signal>0,(diff / perc),0)
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/
|