Welcome Guest, please sign in to participate in a discussion. Search | Active Topics |

Profile: VikinGo75
About
User Name: VikinGo75
Groups: Gold User, Member, Platinum User, TeleChart
Rank: Registered User
Real Name:
Location
Occupation:
Interests:
Gender: Gender:
Statistics
Joined: Tuesday, December 27, 2011
Last Visit: Saturday, March 2, 2019 4:32:22 AM
Number of Posts: 39
[0.01% of all post / 0.01 posts per day]
Avatar
Last 10 Posts
Topic: Right conditions but bad results
Posted: Friday, March 1, 2019 11:12:33 AM

No words, big thank you Bruce.

Topic: Right conditions but bad results
Posted: Thursday, February 28, 2019 6:05:06 PM

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&#39;s wrong?

Thank You.

V.

 

 

Topic: Right conditions but bad results
Posted: Thursday, February 28, 2019 4:53:26 PM

QUOTE (Bruce_L)

For starters, you can&#39;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&deg; 1 Bruce.

Thank You very much.

 

Topic: Right conditions but bad results
Posted: Thursday, February 28, 2019 4:38:54 PM

Gm, i&#39;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&#39;t understand.

Thank You

V.

Topic: Fibonacci indicator
Posted: Tuesday, October 3, 2017 7:31:00 AM

Thank You Diceman.

Topic: Fibonacci indicator
Posted: Sunday, September 24, 2017 9:34:37 AM

I&#39;ve found this:

(C-MAXH10)/(MAXH10-MINL10)*100
 
but that formula includes also today&#39;s high and low.
 
How to leaving out today&#39;s high and low?
 
Thank You
 
Vigo
Topic: Fibonacci indicator
Posted: Sunday, September 24, 2017 7:30:30 AM

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

Topic: Easyscan - How to limit the results
Posted: Wednesday, October 7, 2015 6:42:00 AM

Hi there,

i don&#39;t know if it&#39;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

Topic: Bollinger Bands
Posted: Tuesday, June 30, 2015 4:18:09 AM

Thank you, Bruce!

Topic: Bollinger Bands
Posted: Saturday, June 27, 2015 10:34:35 AM

Hi there, i need a pcf to write the:

  • upper band
  • lower band

of a Bollinger Band of 20 periods (daily), 2 standard deviations, based on a simple moving average.

Thank you in advance.

Vigo