VikinGo75 |
Gold User, Member, Platinum User, TeleChart
|
Registered User |
|
|
|
|
Gender: |
|
Tuesday, December 27, 2011 |
Saturday, March 2, 2019 4:32:22 AM |
39 [0.01% of all post / 0.01 posts per day] |
|
No words, big thank you Bruce.
|
Bruce, same problem:
- Stocks with fibonacci daily between 100 and 61,80 (at bottom) AND Close < Open
- Stocks with fibonacci daily between 38,20 and 0 (at top) AND Close > Open
I get some bad results:
((C-H)/(H-L)*100> -100 AND ((C-H)/(H-L)*100) < -61 AND C<O) OR ((C-H)/(H-L)*100> -39 AND C>0)
What's wrong?
Thank You.
V.
|
QUOTE (Bruce_L)
For starters, you can't just write 40<C<100, you need to write this as 40 < C AND C < 100 instead. In any case, please try the following.
(40 <= C AND C < 100 AND 100 * H > 104 * L) OR (100 <= C AND C < 200 AND 100 * H > 103 * L) OR (200 <= C AND 100 * H > 102 * L)
It works! n° 1 Bruce.
Thank You very much.
|
Gm, i've written this condition formula:
- Stocks between 40 - 100 with daily range > 4%
- Stocks between 100 - 200 with daily range > 3%
- Stocks over 200 with daily range > 2%
(((((H-L)/L)*100) > 4) AND (40<C<100)) OR (((((H-L)/L)*100) > 3) AND (100<C<200)) OR (((((H-L)/L)*100) > 2) AND (C>200))
but in the results i find also stocks between 40 and 100 with a daily range between 3 and 4 (it should be at least 4).
Why? I don't understand.
Thank You
V.
|
Thank You Diceman.
|
I've found this:
(C-MAXH10)/(MAXH10-MINL10)*100
but that formula includes also today's high and low.
How to leaving out today's high and low?
Thank You
Vigo
|
Good morning,
i would like to know how to write a fibonacci indicator of the last 10 weeks (on a weekly basis).
Thank You
Vigo
|
Hi there,
i don't know if it's possible right now but i would like to limit the results of any easyscan.
for example, i would limit the results at the first 10.
Is it possible?
Thank you
Vigo
|
Thank you, Bruce!
|
Hi there, i need a pcf to write the:
of a Bollinger Band of 20 periods (daily), 2 standard deviations, based on a simple moving average.
Thank you in advance.
Vigo
|
|