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
|
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);
|
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
|
Bruce just figured what I was doing wrong....please ignore last request.
Thanks,
Yvonne
|
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'm doing wrong?
Thanks,
Yvonne
|
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't figure what it is.
Can you please help me with this?
|
Thanks Bruce,
Appreciate it.
|
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
|
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
|