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
|
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
|
Hi:
Is there a user's manual on how to use true markers with candlesticks on charts?
Jeff
|
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:
'|******************************************************************
'|*** StockFinder RealCode Indicator - Version 5.0 www.worden.com
'|*** Copy and paste this header and code into StockFinder *********
'|*** Indicator:Jeff Open vs Close Absolute
'|******************************************************************
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)
-----------------------------------------------------------------------------------------------
|
Hi:
Is there an auto sort timing method in TC2000 within the main chart window?
Stockfinder 5 has this feature.
Jeff
|
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
|
Thanks for the information.
Jeff
|
Hi:
Does chat live support still work?
Jeff
|
Hi:
Is there a way to perform a sort or filter on block trades?
Jeff
|