adding moving average line to equity curve

Just plot a "Custom 2 Lines" indicator.

In the "Plot1Formula" field type in : I_OpenEquity

In the "Plot2Formula" field type in : XAverage(I_OpenEquity, 14)

(for a 14 period EMA of the open equity curve)

To use the closed equity curve just use I_ClosedEquity above instead of I_OpenEquity.
 
Refer to I_OpenEquity in TS help.
This is not available in earlier versions of TS (certainly not in TS2000i).

if you are using TS2000i, then you'll have to write your own in that case.
 
No. It is not a function, it is a reserved word in TS8.

If you want that functionality in TS2000i, you'll have to write some code.
 
Back
Top