[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: [amibroker] True Strength Index



PureBytes Links

Trading Reference Links

Yes,  Instead of the 1, 25, 13.  This is the
modification.
Much thanks again.
/*****TSI*****/
u=3;
r=5;
s=8;
t=5;
x=100*EMA(EMA(ROC(C,u),r),s)/EMA(EMA(abs(ROC(C,u)),r),s);
Plot(x,"TSI",colorBlue,styleHistogram);
Plot(MA(x,t),"MA",colorYellow,1);
I find that the histogram extreme point are more closely aligned
with price extreme points.  I use the MA crossing the TSI as a
confirmation.
At 10:44 PM 10/27/02, you wrote:
-----Original
Message-----
From: Larry M. Powell
[mailto:larypowell@xxxx]
Sent: Monday, October 28, 2002 12:39 AM
To: amibroker@xxxxxxxxxxxxxxx
Subject: RE: [amibroker] True Strength Index
 "
I am finding that 3, 5, 8 plots well for daily and 1, 5, 8 for
weekly. "  
 
Are you talking about the 3,5,8
for the ma trigger? 
 
jayson 
 
Larry
At 08:05 PM 10/27/02, you wrote:
Larry,
 
try........
 
*****TSI***** 


x=100*EMA(EMA(ROC(C,1),25),13)/EMA(EMA(abs(ROC(C,1)),25),13);

Plot(x,"TSI",colorBlue,styleHistogram);

Plot(MA(x,20),"MA",colorYellow,1);
Jayson 
-----Original
Message-----
From: larypowell_0649
[mailto:larypowell@xxxx]
Sent: Sunday, October 27, 2002 7:41 PM
To: amibroker@xxxxxxxxxxxxxxx
Subject: [amibroker] True Strength Index
Christian,  Some time ago, on another board, you posted
code for Bill
Blau's TSI in Metastock.  The October 2002 issue of Active Trader
had
an article on TSI and an variation for TSI slope.  They gave the
code
for Trade Station, I think version 6.  I was wondering if you had
a
change to a) ever code TSI for AmiBroker and b) if you read this
article and were contemplating this for Amibroker.
Thanks,
Larry