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

Profile: StockOperator2016
About
User Name: StockOperator2016
Groups: Gold User, Member, TeleChart
Rank: Registered User
Real Name:
Location
Occupation:
Interests:
Gender: Gender:
Statistics
Joined: Saturday, July 23, 2016
Last Visit: Sunday, April 28, 2019 9:03:26 AM
Number of Posts: 19
[0.01% of all post / 0.01 posts per day]
Avatar
Last 10 Posts
Topic: 50 Cents to 50 SMA
Posted: Friday, May 4, 2018 7:58:40 AM

Thanks Bruce you are a Legend.

Topic: 50 Cents to 50 SMA
Posted: Thursday, May 3, 2018 5:56:22 AM

Hi Bruce, If I used this code ABS(C-XAVG50) <=.5. Would it be possible to add additional code so the 50 Expotential Moving Average is sloping higher or lower. Ideally I would like the 50EMA to be at a 30-45 degree angle, if this isnt possible please can you suggest the best alternative.

Topic: 9ema crosses 21sma + Price above VWAP
Posted: Monday, April 30, 2018 3:07:32 PM

Thanks Bruce. I have addded some price and volume filters to it. I have got a problem with the Volume section. I am doing a 15 minute scan but I think my code is looking for volume of 300000 on the 15 minute bar. I want to scan for daily volume of 300000, what changes would I need to make.

XUP(XAVGC9,AVGC21) and C >= 15 and C <= 80 and V =>300000

Topic: 9ema crosses 21sma + Price above VWAP
Posted: Monday, April 30, 2018 1:30:13 PM

Hi Price, What is the code for 9ema crossing the 21sma + Price above VWAP. I want to find stocks were the moving average cross has just happened on the last bar. 

Topic: All Time Highs and Lows
Posted: Friday, April 27, 2018 1:11:39 PM

Hi Bruce, What is the code if I wanted to scan for All Time Highs and All Time Lows. 

Topic: 50 Cents to 50 SMA
Posted: Friday, April 27, 2018 1:10:17 PM

Thanks Bruce.

Topic: 50 Cents to 50 SMA
Posted: Friday, April 27, 2018 8:51:48 AM

Thanks Bruce. If I wanted to use expotential moving average instead. Is the code below correct.

ABS(C - xAVGC50) <= .5

 

 

Topic: 50 Cents to 50 SMA
Posted: Friday, April 27, 2018 8:31:26 AM

Hi Bruce, I am currently reading through all the posts in this forum to try and learn the code. I came across this code below. How could the code below be adapted so price is within 50 cents of the 50sma (50 cents above and 50 Cents below) rather than using a percentage of.  

 

 

A condition formula for the current price being within 3% of the 50 period simple moving average can be written as follows.

100 * (C / AVGC50 - 1) <= 3

Topic: New 52 week High
Posted: Friday, April 27, 2018 7:52:53 AM

Thanks Bruce it was the MIN that was incorrect.

Topic: Time and Sales and Depth of Market
Posted: Friday, April 27, 2018 7:47:45 AM

Ok thanks Bruce.