Download software Tutorial videos
Subscription & data-feed pricing Class schedule


New account application Trading resources
Margin rates Stock & option commissions

Attention: Discussion forums are read-only for extended maintenance until further notice.
Welcome Guest, please sign in to participate in a discussion. Search | Active Topics |

Profile: thebull
About
User Name: thebull
Groups: Gold User, Member, Platinum User, TeleChart
Rank: Registered User
Real Name:
Location
Occupation:
Interests:
Gender: Unsure
Statistics
Joined: Monday, August 4, 2008
Last Visit: Friday, February 8, 2013 1:47:27 PM
Number of Posts: 7
[0.00% of all post / 0.00 posts per day]
Avatar
Last 10 Posts
Topic: EasyScan with 2 conditions is not getting every symbol
Posted: Friday, February 8, 2013 12:50:36 PM

Sorry, the post was wrong.  My condition is looking for symbols where ATR is greater than 70 cents.  

With regard to AKAM yesterday and LNKD today, both made the list early in the day and somehow got dropped off the list.  None of my conditions sould remove symbols once they've met the criteria.

Victor

Topic: EasyScan with 2 conditions is not getting every symbol
Posted: Friday, February 8, 2013 12:06:30 PM

Right.....ATR14 of $1.34 is greater that 70 cents.

I'm having the same problem with LNKD today.  It was on my scan list this morning, but now it's gone.

 

Victor

Topic: EasyScan with 2 conditions is not getting every symbol
Posted: Friday, February 8, 2013 11:42:26 AM

ATR = 14

Topic: EasyScan with 2 conditions is not getting every symbol
Posted: Friday, February 8, 2013 8:49:53 AM

AKAM did not show up in my list.  My other conditions are as follows:

- Optionable is True

- Capitalization > 1000 (one billion)

- ATR < .70

- Volume 90-Day > 250000

Again, AKAM fits the conditions.

 

Victor

 

 

 

Topic: EasyScan with 2 conditions is not getting every symbol
Posted: Thursday, February 7, 2013 7:42:08 PM

Hi:

With the help of your support team, I have 2 conditions as follows:

True Range > Average True Range (see formula below)

and

Proce crossed any one of 3 Simple Moving Averages (see formula below)

The scan results seem to be working fine, but some symbols are not making the list.  AKAM is a good example of a symbol that was missed.  It actually crossed the 20, 50 and the 200 even though my condition is looking for anyone of these.  It also had a True Range that exceeded the ATR by a factor of over 4.

What am I missing?

Victor

 

***True Range > Average True Range condition***

 

(H -L + ABS(H - C1) + ABS(C1 - L)) / 2 > 
(AVGH14.1 - AVGL14.1) / 2 + 
(ABS(H1 - C2) + ABS(C2 - L1) + 
ABS(H2 - C3) + ABS(C3 - L2) + 
ABS(H3 - C4) + ABS(C4 - L3) + 
ABS(H4 - C5) + ABS(C5 - L4) + 
ABS(H5 - C6) + ABS(C6 - L5) + 
ABS(H6 - C7) + ABS(C7 - L6) + 
ABS(H7 - C8) + ABS(C8 - L7) + 
ABS(H8 - C9) + ABS(C9 - L8) + 
ABS(H9 - C10) + ABS(C10 - L9) + 
ABS(H10 - C11) + ABS(C11 - L10) + 
ABS(H11 - C12) + ABS(C12 - L11) + 
ABS(H12 - C13) + ABS(C13 - L12) + 
ABS(H13 - C14) + ABS(C14 - L13) + 
ABS(H14 - C15) + ABS(C15 - L14))
/ 28
 
*** Price Crossed any of 3 Simple Moving Averages ***
 
(C1 < AVGC20.1  and H > AVGC20) or (C1 > AVGC20.1  and L < AVGC20) or
(C1 < AVGC50.1  and H > AVGC50) or  (C1 > AVGC50.1  and L < AVGC50) or
(C1 < AVGC200.1  and H > AVGC200) or (C1 > AVGC200.1  and L < AVGC200)
Topic: Hull Moving Averages
Posted: Friday, December 31, 2010 6:38:28 PM
Bruce:

It works.  Thank you.

Victor
Topic: Hull Moving Averages
Posted: Friday, December 31, 2010 3:56:41 PM
Bruce:

When trying to recreate the Hull Moving Average using your code above in the Realcode Editor, I get several error messages as follows:

Line 0: 'Public Overrides Function Plot() As Single' has multiple definitions with identical signatures.
Line 9: Statement cannot appear within a method body. End of method assumed.
'End Function' must be preceded by a matching 'Function'.
'End Class' must be preceded by a matching 'Class'.

Your text preceding the code references a 'Inherits line' in the 'Class tab'.  Unfortunately, I don't understand what that means.  Please help.

Victor