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

Profile: yms1
About
User Name: yms1
Groups: Gold User, Member, Platinum User, TeleChart
Rank: Registered User
Real Name:
Location
Occupation:
Interests:
Gender: Gender:
Statistics
Joined: Saturday, August 21, 2010
Last Visit: Wednesday, April 15, 2020 1:09:59 AM
Number of Posts: 9
[0.00% of all post / 0.00 posts per day]
Avatar
Last 10 Posts
Topic: 10 Month SMA
Posted: Monday, February 12, 2018 8:31:50 PM

Hi Bruce,

Looking in the forum but could not find a 10 month SMA indicator to use on my monthly Ivy Portfolio. 

Some say the 200 SMA is simular but would prefer the 10.  Your help is appreciated.

Thanks,

Yvonne 

Topic: Fast & Slow CCI
Posted: Monday, April 29, 2013 9:44:14 PM

Hi Bruce I was looking to create this  Dual CCI setup... with Fast MA(21) & Slow MA(34) is it possible? I haven't a clue as to where to start with this.
This was from a previous platform I had and would like to have it here at TC2000.

function main(FastMA,SlowMA) {
	if (FastMA == null) 
		FastMA = 10;
	if (SlowMA == null) 
		SlowMA = 20;
	var vCCI;
	var i;
	var SlowSum = 0, FastSum = 0;
	
	vCCI = study.getValue(CCIStudy.CCI,0,-SlowMA);
	if(vCCI == null)
		return;
	for(i = 0; i < SlowMA; i++){
		if(i < FastMA)
			FastSum += vCCI[i];
		SlowSum += vCCI[i]
	}
	SMA = SlowSum / SlowMA;
	FMA = FastSum / FastMA;
	
	if(SMA < FMA && !Strategy.isLong())
		Strategy.doLong("Long", Strategy.MARKET, Strategy.THISBAR);
	if(SMA > FMA && !Strategy.isShort())
		Strategy.doShort("Short", Strategy.MARKET, Strategy.THISBAR);

	if(Strategy.isLong())
       		setPriceBarColor(Color.lime);
	if(Strategy.isShort())
        	setPriceBarColor(Color.red);

	return new Array(SMA,FMA);
Topic: Divergence OBV
Posted: Wednesday, April 24, 2013 1:12:32 PM

Hi Bruce looking for this divergence can you help me with this filter. This is basically what I need.

 

Stock in uptrend

3 day slope of the close < -.2
3 day slope of the obv(20) > .2

5 day slope of the close < -.2
5 day slope of the obv(20) > .2

close > 10
volume > 1000000

Yvonne

Topic: Bullish Acceleration
Posted: Wednesday, March 27, 2013 4:20:58 PM

Bruce just figured what I was doing wrong....please ignore last request.

Thanks,

Yvonne

Topic: Bullish Acceleration
Posted: Wednesday, March 27, 2013 4:15:31 PM

Hi Bruce,

In place of  100 * (C-L) /(H-L) I replaced with Stoc > 75 along with the other criteria but still receiving syntex error?


C > C1 and C1 > C2 and C2 > C3

V > V1 and V1 > V2 and V2 > V3

Stoc1 > 75

Not sure what to do or what I&#39;m doing wrong?

Thanks,

Yvonne

Topic: Bullish Acceleration
Posted: Tuesday, March 26, 2013 9:16:50 PM

Watched the Webinar tonight and Michal Thompson created this condition called

Bullish Acceleration which I thought was this:

Price Up 3 days
C > C1 and C1 > C2 and C2 > C3

Vol Up 3 Days
V > V1 and V1 > V2 and V2 > V3

Close as % range
100 * (C-L) /(H-L)

There is an argument near * but can&#39;t figure what it is.

Can you please help me with this?

Topic: Columns
Posted: Wednesday, December 14, 2011 12:56:25 AM
Thanks Bruce,
Appreciate it. 
Topic: Columns
Posted: Friday, December 9, 2011 6:11:46 PM
I am presently a Gold TC2000 member and I would like to create a column with a scan I created whereas
the CCI(20) is between -75 and above -100 Daily.
Is there a way to create this column since the CCI doesn't give the option of selecting the parameter of "between".
Thanks,
Yvonne
Topic: Range Bars
Posted: Thursday, November 10, 2011 10:02:18 PM
I am currently a new member of Worden's TC2000 and a gold member.
I was interested in creating Range Bars on my charts to remove the noise out of the markets.
If I have the formula can they be created?
Also is there any time line for introducing PnF charting to your site?
Thanks for your reply,
Yvonne