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: rlb1987
About
User Name: rlb1987
Groups: Gold User, Member, Platinum User, TeleChart
Rank: Registered User
Real Name:
Location
Occupation:
Interests:
Gender: Unsure
Statistics
Joined: Wednesday, January 2, 2008
Last Visit: Wednesday, February 18, 2015 8:52:43 PM
Number of Posts: 41
[0.01% of all post / 0.01 posts per day]
Avatar
Last 10 Posts
Topic: Real Code Band
Posted: Tuesday, March 18, 2014 10:19:13 PM

Dear Bruce,

Thank you. It is just excellent.

Regards

Roberto

Topic: Real Code Band
Posted: Tuesday, March 18, 2014 11:37:37 AM

Dear Bruce,

I asked this question last Sunday, but I don;t see it posted, that is why I am asking againg

Could you help me with this real code? I would like to have a chart for StockFinder 5 that displays around the price Indicator = MovAverage (price, period=20) +parameter* C_last*Square_root( Std_Dev ( Ln(Ci/Ci+1 ), period=20)) where  Std_Dev is the standard deviation, The parameter take the values p= 4,3,-3,-4. I was able to implement it in TC2000, I am including the code I wrote, but I badly need it for StockFinder 5 that is where I have the indicators I used. I have tried to do it in StockFinder 5 but have failed. Thank in advance for your help as always. In TC2000:

AVGC20 +4*C*SQR(( ( Log(C1/C2)^2 + Log(C2/C3)^2 + Log(C3/C4)^2 + Log(C4/C5)^2 + Log(C5/C6)^2 + Log(C6/C7)^2 + Log(C7/C8)^2 + Log(C8/C9)^2 + Log(C9/C10)^2 + Log(C10/C11)^2 + Log(C11/C12)^2 + Log(C12/C13)^2 + Log(C13/C14)^2 + Log(C14/C15)^2 + Log(C15/C16)^2 + Log(C16/C17)^2 + Log(C17/C18)^2 + Log(C18/C19)^2 + Log(C19/C20)^2 + Log(C20/C21)^2 )- ( Log(C1/C2) + Log(C2/C3) + Log(C3/C4) + Log(C4/C5)+ Log(C5/C6) + Log(C6/C7) + Log(C7/C8) + Log(C8/C9) + Log(C9/C10) + Log(C10/C11) + Log(C11/C12) + Log(C12/C13) + Log(C13/C14) + Log(C14/C15) + Log(C15/C16) + Log(C16/C17) + Log(C17/C18) + Log(C18/C19) + Log(C19/C20) + Log(C20/C21) )^2/20)/19)

Roberto

Topic: Real code chart.
Posted: Sunday, March 16, 2014 11:43:16 AM

Dear Bruce,

Could you help me with this real code? I would like to have a chart for StockFinder 5 that display around the price Indicator = MovAverage (price, period=20) +parameter* C_last*Square_root( Std_Dev ( Ln(Ci/Ci+1 ), period=20)) where  Std_Dev is the standard deviation, The parameter take the values p= 4,3,-3,-4. I was able to implement it in TC2000, I am including the code I wrote, but I badly need it for StockFinder 5 that is where I have the indicators I used. I have tried to do it in StockFinder 5 but have failed. Thank in advance for your help as always. In TC2000:

AVGC20 +4*C*SQR(( ( Log(C1/C2)^2 + Log(C2/C3)^2 + Log(C3/C4)^2 + Log(C4/C5)^2 + Log(C5/C6)^2 + Log(C6/C7)^2 + Log(C7/C8)^2 + Log(C8/C9)^2 + Log(C9/C10)^2 + Log(C10/C11)^2 + Log(C11/C12)^2 + Log(C12/C13)^2 + Log(C13/C14)^2 + Log(C14/C15)^2 + Log(C15/C16)^2 + Log(C16/C17)^2 + Log(C17/C18)^2 + Log(C18/C19)^2 + Log(C19/C20)^2 + Log(C20/C21)^2 )- ( Log(C1/C2) + Log(C2/C3) + Log(C3/C4) + Log(C4/C5)+ Log(C5/C6) + Log(C6/C7) + Log(C7/C8) + Log(C8/C9) + Log(C9/C10) + Log(C10/C11) + Log(C11/C12) + Log(C12/C13) + Log(C13/C14) + Log(C14/C15) + Log(C15/C16) + Log(C16/C17) + Log(C17/C18) + Log(C18/C19) + Log(C19/C20) + Log(C20/C21) )^2/20)/19)

Roberto

Topic: Graphing an indicator from Excel file in Stockfinder.
Posted: Wednesday, February 26, 2014 8:28:14 AM

Thank you!

Topic: Graphing an indicator from Excel file in Stockfinder.
Posted: Tuesday, February 25, 2014 1:24:24 PM

I have an indicator that I hace computed in Excel, is there a way to graph it in StockFinder as a new indicator? I have to do it that way because the data I use is from Futures that is not available in Worden data.

Topic: SPY and VIX chart and VXX/VXZ ratio
Posted: Monday, February 10, 2014 1:35:10 PM

Is there a way to plot the SPY with the VIX together, and the ratio of VXX/VXZ as an indicator in TC2000?

Topic: Real Code
Posted: Thursday, August 30, 2012 7:09:15 AM

Dear Bruce,

Thank you.

Regards

 

Topic: Real code
Posted: Monday, August 27, 2012 1:07:40 PM

Could you help me transforming the following code to real code for StockFinder?

‘LEN = 30

‘H = high

‘L = low

‘ StdDevX standard deviation


inputs:LEN(30), Smooth(3), Strength(1);
vars: RWH(0), RWL(0),PEAK(0), MEAN(0), STD(0);

RWH = (H[0] - L[LEN]) / (AvgTrueRange(LEN) * SquareRoot(LEN));
RWL = (H[LEN] - L[0]) / (AvgTrueRange(LEN) * SquareRoot(LEN));
PEAK = WAverage((RWH - RWL),3);
MEAN = average(PEAK,LEN);
STD = StdDevx(PEAK,LEN);

if (MEAN + (1.33 * STD)) > 2.08 then value1 = (MEAN + (1.33 * STD))
else value1 = 2.08;

if (MEAN - (1.33 * STD)) < -1.92 then value2 = (MEAN - (1.33 * STD))
else value2 = -1.92;

if PEAK[1] >= 0 and PEAK > 0 then plot2(value1,"+/-97.5%");
if PEAK[1] <= 0 and PEAK < 0 then plot2(value2,"+/-97.5%");
 Plot is as a histogram

Topic: TC2000 is not statrting
Posted: Thursday, August 23, 2012 9:26:08 AM

I installed the new version 12.2, but i can not get it running. Help?

Topic: PerfChart
Posted: Wednesday, January 26, 2011 1:17:15 PM
Thank very much!