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: EQUIROGA
About
User Name: EQUIROGA
Groups: Gold User, Member, Platinum User, TeleChart
Rank: Registered User
Real Name:
Location
Occupation:
Interests:
Gender: Unsure
Statistics
Joined: Thursday, April 30, 2009
Last Visit: Friday, June 5, 2020 6:17:40 PM
Number of Posts: 3
[0.00% of all post / 0.00 posts per day]
Avatar
Last 10 Posts
Topic: PCF for using Money Stream
Posted: Wednesday, January 10, 2018 4:32:00 PM

Bruce

Thanks for the reply and I apologize that I didn't explain myself very well. What I am trying to is come up with a scan condition that will allow me to monitor the % change of a 12 peroid, exponential moving average of moneystream.I want to be able to scan for stocks ( interday) were the xavg of MS has moved up or dwn a certain percentage from yesterdays closing value. 

 

Thanks

 

Topic: PCF for using Money Stream
Posted: Tuesday, January 9, 2018 10:56:29 PM

Hello Bruce

I am,trying ( with no luck) to create a scan condition that monitors the daily percent change of moneystream. I want to search for stocks that have a miniumm percent gain in moneystream interday.

 

Thanks

 

EQ

Topic: Help creating a watch list filter for stocks crossing the high of the 1st 15 minutes of trading
Posted: Monday, February 22, 2016 10:19:03 PM

Hello Bruce

 

I came across a previous topic were you helped a customer create a realcode indicator to plot the high of the first 15 minutes of trading. The code you develope is shown below. I need some help to come up with a condition that will allow me to filter a watchlist based on the stocks that are crossing above the 15 minute high bar.  I would appreciate any guidance you can provide.

lease try something similar to the following RealCode Indicator instead:

'|******************************************************************
'|*** StockFinder RealCode Indicator - Version 5.0 www.worden.com 
'|*** Copy and paste this header and code into StockFinder *********
'|*** Indicator:Opening 15-Minute High
'|******************************************************************
Static Open15MinHigh As Single
If isFirstBar Then
	Open15MinHigh = Single.NaN
Else If Price.DateValue.DayOfYear <> Price.DateValue(1).DayOfYear Then
	Open15MinHigh = Price.High
Else If Price.DateValue.TimeOfDay <= Date.Parse("09:45").TimeOfDay Then 
	Open15MinHigh = System.Math.Max(Open15MinHigh, Price.High)
End If
Plot = Open15MinHigh
 

 

Regards