|
felik
2010-05-24 13:41:22
|
|
for NR7 i.e. stock has naroowest range of high low over last seven days( means look back period is 7 days .
wat is the array for( a)look back period and (b) greater then 3* but less then 2*
|
|
|
|
QuantShare
2010-05-26 06:33:51
0
|
|
Here is the NR7 formula
nr7 = (high - low) == LLV(high - low,7);
To update the look back period just change the "7"
Please provide more information for the "greater then 3* but less then 2* ".
|
|
|
|
felik
2010-05-27 08:42:32
0
|
|
its like this ; search for stocks whose close is between 2% to maximum 5 % above/ more(greater) then 200ema so that i get stocks trading near their n EMA(n= no of days eg 10 / 20 /50/ 200 ema)
|
|
|
|
QuantShare
2010-05-27 10:21:08
0
|
|
Ok, here is the formula:
a = close >= 1.02 * ema(200) and close
|
|
|
|
felik
2010-05-28 01:40:19
0
|
|
Thanks u truly amaze me with ur programming caacity seems u can write any rue for any stratgey
If i have to bundle 2 or more strategies 2gether then can it be done with an AND between sucssive stratgies? and if hav to make these stratgies rigid then how to do? By rigid i means " only if" ......
|
|
|
|
QuantShare
2010-05-28 06:30:13
0
|
|
Best Answer
Thank you
rule3 = rule1 AND rule2
This means that "rule3" is TRUE only if "rule1" and "rule2" are TRUE.
rule3 = rule1 OR rule2
This means that "rule3" is TRUE if "rule1" or "rule2" is TRUE.
|
|
|
|
felik
2010-06-02 01:15:58
0
|
|
3 no no not 3 but many many cheers
thanks friend thankyou vvvvveeeerrrryyy mmmuuucccchhh
|
|
|
|