PureBytes Links
Trading Reference Links
|
input: acct_siz(100000);
var: open_eq_pct(0), closed_eq_pct(0);
open_eq_pct = 100 * (acct_siz + I_OpenEquity) / acct_siz;
closed_eq_pct = 100 * (acct_siz + I_ClosedEquity) / acct_siz;
plot1(open_eq_pct,"Open Equity");
plot2(closed_eq_pct,"Closed Equity");
> I would like to plot System Equity as a percentage change rather than a
> dollar amount. The System Equity indicator references I_OpenEquity and
> I_ClosedEquity, but I don't find these as functions or other indicators and
> I don't find help reference to them as EL words. How can I get to these to
> apply an EL formula which can modify them on each bar?
--
Dennis
|