PureBytes Links
Trading Reference Links
|
Hello,
> From: "bistrader" <bistrader@xxxxxxxxx>
> ScoreNoRotate does not work as expected!
It exactly works as expected and as documented.
If you read http://www.amibroker.com/f?enablerotationaltrading
"the score equal to scoreNoRotate constant means that already open trades should be kept and no new trades entered"
"No new trades entered" means exactly that - NO NEW TRADES are entered (on any symbol).
Existing positons are kept until some ApplyStop triggers the exit.
So it is exactly as it should be and as it is documented.
> Per Marcin Gorzynski at AmiBroker Support, ScoreNoRotate does not
> work on 'per symbol' but on 'per date/time' basis, so if you have
> positionScore equal to ScoreNoRotate for just one symbol - it
> will stop any rotation (only stops will work, but no other trades
> will be performed).
Yes and this is correct and documented behaviour.
> Lets say that you do not want to sell any fund (that you own) during
> the Sell period unless its RSI Stochastic falls below 50. Well, the
> Dallas FastTrack group understood that it could set PositionScore to
> ScoreNoRotate (in rotational trading) for those funds with
> RSIStochastic values above 50.
I don't know from where you have heard this but definitely not from me.
If you don't want to sell, just set the PositionScore to a some high number
(let's say 500) that is higher than your normal scores. That's it.
PositionScore = ... your regular code...
PositionScore = IIF( RSIStoch > 50, 500, PositionScore );
/* 500 is used here, but you can use any value higher than your regular score to prevent selling */
Best regards,
Tomasz Janeczko
amibroker.com
------------------------ Yahoo! Groups Sponsor --------------------~-->
$9.95 domain names from Yahoo!. Register anything.
http://us.click.yahoo.com/J8kdrA/y20IAA/yQLSAA/GHeqlB/TM
--------------------------------------------------------------------~->
Check AmiBroker web page at:
http://www.amibroker.com/
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> 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/
|