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

Profile: maljester
About
User Name: maljester
Groups: Gold User, Member, Platinum User, TeleChart
Rank: Registered User
Real Name:
Location
Occupation:
Interests:
Gender: Unsure
Statistics
Joined: Sunday, January 30, 2005
Last Visit: Friday, August 21, 2020 9:24:06 PM
Number of Posts: 135
[0.05% of all post / 0.02 posts per day]
Avatar
Last 10 Posts
Topic: It's finally happened
Posted: Wednesday, July 25, 2018 12:46:58 PM

Please also send me Impulse 

.

Topic: Awesome Oscillator
Posted: Wednesday, June 20, 2018 11:52:48 AM
avg((h-l)/2,5) - avg((h-l)/2,34)
Does not seem to be giving same values as built-in indicator in StockFinder.
Example: NIHD has .64 in SF5, TC2000 V18 has .10 at close 6/19/2018 on daily chart.
Topic: MaXCLose(20) PCF
Posted: Friday, June 15, 2018 3:06:30 PM

Works well.  Thanks for your help.

Topic: MaXCLose(20) PCF
Posted: Friday, June 15, 2018 1:04:33 PM

Is it possible to translate the following RealCode to a V18 PCF?

Static Buy As Single
If isFirstBar Then
     Buy = 0
End If
If  buy = 0 AndAlso price.high >= price.MaxClose(20, 1) AndAlso price.stoc(21, 8) < 69 Then 
     buy = 1
     plot = 1
Else If buy = 1 AndAlso price.STOC(21, 8) <= price.stochastics(21, 8).avg(5) _
     AndAlso price.STOC(21, 8, 1) > price.stochastics(21, 8).avg(5, 1)  _
     AndAlso price.STOC(21, 8, 1) >= 33 Then 
     buy = 0
     plot = -1
Else plot = 0
End If
Topic: Linear regression trend with standard deviation
Posted: Monday, April 16, 2018 1:14:33 PM

It was set to hi cap 1000.  I changed to U.S. Stocks and that fixed the problem.

Thanks for you  help

Topic: Linear regression trend with standard deviation
Posted: Sunday, April 15, 2018 11:04:42 PM

as of April 13 StockFinder scan with

TC LR Channel indicator with the following settings

Period is 63

Width is 1

TCWidth is False

and price.close less than lower band

AndAlso volume.AVGC(21) > 10000 AndAlso volume.MinClose(5) > 4000 _
AndAlso price.close > 1 AndAlso price.Close < 10
 
returns symbols ABEV, APPS, BW, CIG, EDGE, HMY, MBT, MNKD, NLNK, NVAX, SBS and SIRI
 
TC2000 
avgv21 > 1000000 and minv5 > 400000
and c > 1 and c < 10
and C < 3 * FAVGC63 - 2 * AVGC63 -  STDDEV63
returns ABEV, BBD, MBT, SBS, SIRI
 
The StockFinder stocks are all under lower band.  TC2000 does not appear to be finding all the stocks.
Topic: Linear regression trend with standard deviation
Posted: Wednesday, April 11, 2018 10:58:25 AM

Thank you

Topic: Linear regression trend with standard deviation
Posted: Wednesday, April 11, 2018 8:36:42 AM

I set up your TC LR Channel indicator with the following settings

Period is 63

Width is .95

TCWidth is False

I scan for Price.Low less than lower band

Can this be done in TC2000?

Topic: Linear regression trend with standard deviation
Posted: Monday, April 9, 2018 3:28:16 PM

Is have it possible to have a linear regression trend line with a valiable period and have 1 and 2 standard deviation lines above and below the LinReg trend line in StockFinder and TC2000?

Topic: 14 bar weekly range
Posted: Friday, March 2, 2018 4:42:52 PM

Thanks for your help Bruce.