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: Michaelkarasik
About
User Name: Michaelkarasik
Groups: Member, Platinum User, TeleChart
Rank: Registered User
Real Name:
Location
Occupation:
Interests:
Gender: Unsure
Statistics
Joined: Thursday, October 7, 2004
Last Visit: Sunday, October 27, 2013 4:03:21 PM
Number of Posts: 80
[0.03% of all post / 0.01 posts per day]
Avatar
Last 10 Posts
Topic: Add Dividend to code
Posted: Friday, October 11, 2013 3:51:20 PM

Thank you.

Michael

Topic: Add Dividend to code
Posted: Friday, October 11, 2013 2:00:29 PM

Bruce,

Please add a condition of Dividend >= to 1.5% to this code. 

Thanks,

Michael

'# SMAperiod = UserInput.Integer = 225
'# AbovePeriod = UserInput.Integer = 250
'# Percent = UserInput.Single = 90
Static Count As Integer
Static Threshold As Single
Static Valid As Integer
If isFirstBar Then
Count = 0
Threshold = AbovePeriod * Percent / 100
Valid = AbovePeriod + SMAperiod - 1
SetIndexInvalid
Else If CurrentIndex >= SMAperiod Then
If Price.Last > Price.AVGC(SMAperiod) Then
Count += 1
End If
If CurrentIndex > Valid Then
If Price.Last(AbovePeriod) > Price.AVGC(SMAperiod, AbovePeriod) Then
Count -= 1
End If
If Count >= Threshold Then
Pass
End If
Else
SetIndexInvalid
End If
Else
SetIndexInvalid
End If
Topic: Windows 8
Posted: Friday, September 27, 2013 3:56:36 PM

Bruce,

Will StockFinder work in Window 8?

Topic: Windows 8
Posted: Friday, September 27, 2013 3:54:48 PM

Bruce,

Will StockFinder work in Window 8?

Topic: BackScanner data going back to 1998
Posted: Wednesday, April 3, 2013 10:47:22 AM

Bruce,

Thanks for the suggestion; however my results are still the same.  Perhaps the problem is in the StockFinder code itself, in which case I will make due with 2005.

Thanks,

Michael

Topic: BackScanner data going back to 1998
Posted: Wednesday, April 3, 2013 9:54:59 AM

 

Bruce,

I am having trouble getting the BackScanner to refresh too much earlier than 2005.  I set the data to 4,000 and the starting data to 1/1/1998.  Although the BackScanner appears to be identifying buy and sell triggers from my layout criteria going back to at least 2000 the screen does not show buys and sells much earlier than mid-2005.

I have waited a while before refreshing, but to no avail.

Any suggestions?

Thanks,Michael

Topic: Price History Percent Change question
Posted: Friday, March 29, 2013 3:27:58 PM

Thanks Bruce - I hope your have a enjoyable weekend.

Michael

Topic: Price History Percent Change question
Posted: Friday, March 29, 2013 10:48:04 AM

 

Bruce,

I am writing a condition from Price History.  I want to use Price History Percent Change to indicate ‘true’ as a series in Combination Condition box when the particular stock drops more than 9% after a long period of strong growth.

My question is:

                Do I use < or > to indicate a drop in price?

Thanks,

Michael

Topic: Using an SSD to speed up the BackScanner experience
Posted: Monday, December 31, 2012 6:14:03 PM

Bruce,

I just installed a SSD.  The BackScanner went from a running time of 1 min +/- to about 20 seconds!!

Thanks and I wish you a good new year.

Topic: Using an SSD to speed up the BackScanner experience
Posted: Friday, December 28, 2012 9:43:51 AM

Thanks