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: hawkeyejjl
About
User Name: hawkeyejjl
Groups: Member, Platinum User, TeleChart
Rank: Registered User
Real Name:
Location
Occupation:
Interests:
Gender: Gender:
Statistics
Joined: Monday, May 16, 2011
Last Visit: Monday, November 2, 2015 6:35:44 PM
Number of Posts: 108
[0.04% of all post / 0.02 posts per day]
Avatar
Last 10 Posts
Topic: Slow sort
Posted: Thursday, May 21, 2015 10:28:03 AM

Yes, I also see very slow sort times on watch list.  Sometimes the sort takes 45 minutes on a dual core processor laptop with windows 7.

Jeff

Topic: true markers
Posted: Sunday, November 16, 2014 7:37:44 PM

I have created a condition about true markers.

However I am not able to see the arrow with the "show true marker" command.

Am I doing something wrong?

Thanks,

Jeff

Topic: true markers
Posted: Thursday, May 29, 2014 8:23:35 PM

Hi:

Is there a user's manual on how to use true markers with candlesticks on charts?

Jeff

Topic: net vs absolute difference
Posted: Thursday, April 3, 2014 8:46:28 PM

Hi:

What is the definition of net vs absolute difference in the following code?

Thanks,

Jeff

---------------------------------------------------------------------------------------------

 

If you mean the Net Difference then:

'|****************************************************************** 
'|*** StockFinder RealCode Indicator - Version 5.0 www.worden.com 
'|*** Copy and paste this header and code into StockFinder ********* 
'|*** Indicator:Jeff Open vs Close Net  
'|****************************************************************** 
Static Basis As Single 
If isFirstBar Then 
    Basis = Single.NaN
Else If Price.DateValue.DayOfYear <> Price.DateValue(1).DayOfYear Then 
    Basis = Price.Last 
End If 
Plot = Price.Last - Basis

If you mean the Absolute Difference then:

&#39;|****************************************************************** 
&#39;|*** StockFinder RealCode Indicator - Version 5.0 www.worden.com 
&#39;|*** Copy and paste this header and code into StockFinder ********* 
&#39;|*** Indicator:Jeff Open vs Close Absolute
&#39;|****************************************************************** 
Static Basis As Single 
If isFirstBar Then 
    Basis = Single.NaN
Else If Price.DateValue.DayOfYear <> Price.DateValue(1).DayOfYear Then 
    Basis = Price.Last 
End If 
Plot = System.Math.Abs(Price.Last - Basis)

-----------------------------------------------------------------------------------------------

 

Topic: sorting
Posted: Friday, February 14, 2014 11:42:32 AM

Hi:  

Is there an auto sort timing method in TC2000 within the main chart window?

Stockfinder 5 has this feature.

Jeff

Topic: daily interval
Posted: Friday, December 13, 2013 3:08:06 PM

Hi:

In the main chart for volume, I selected daily interval.

However, I do not see any data for December except for current day.  But data is there for November on a daily basis.

Is there some sort of scaling mode I need to know about?

Jeff

Topic: block
Posted: Friday, December 13, 2013 3:05:47 PM

Thanks for the information.

Jeff

Topic: chat
Posted: Friday, December 13, 2013 2:59:28 PM

Hi:

Does chat live support still work?

Jeff

Topic: block
Posted: Tuesday, December 10, 2013 3:06:36 PM

Hi:

Is there a way to perform a sort or filter on block trades?

Jeff

Topic: bid ask
Posted: Monday, December 2, 2013 3:03:54 PM

thank you