Hello,
Howard told you how to do that. Reread his answer.
Use weight, multiply rsi by higher number (weight) and RET by lower number
(weight)
then add the numbers up and use as position.
Best regards,
Tomasz Janeczko
amibroker.com
On 2010-09-07 13:52, tstudent wrote:
Yes assigned to positionscore.
In other terms, my objective is to isolate all stocks with worst rsi (or return
or other).
So my universe now is costituited by those stocks.
After, within those stocks, i want give a priority (and select for buy) to N
stocks with the best RET (or other statistics).
Too complex?
Thank you
At 01.18 07/09/2010, you wrote:
Hi tstudent --
Your question does not say how you will be using the result. If it will be
assigned to ProfitScore, try this:
rrr = rsi; // however you do this
ret = weeklyreturn; // however you do this
PositionScore = 1000*rrr + ret; // adjusted as necessary so the numbers come
out with the meaning you want
PositionScore will be sorted in order of rrr, with ties broken by ret.
Thanks,
Howard
On Mon, Sep 6, 2010 at 12:55 PM, tstudent <[email protected]
<mailto:[email protected]>> wrote:
How i do a double sort?
For example i want give a priority to:
1) stocks with worst rsi
2) sort stocks within point one for best 1 week return
Thanks