Hi all,
I there a way to position according to current account equity?
I’d like to make a formula based off of the ATR and current account equity, but am not finding any command to call up current account equity.
Might be an easy one idk, I guess I’ll have to invest in a coding class. Thanks ahead of time.
JSParticipant
Veteran
Hi,
At the moment, it’s not possible to retrieve your actual account equity.
You’ll need to handle it through software, for example:
Once Equity = 10000
Capital = StrategyProfit + Equity
ATR = AverageTrueRange[14](Close)
Ratio = Capital / ATR
JSParticipant
Veteran
Or beter 😉
Once Capital=10000
Equity=Capital+StrategyProfit
ATR=AverageTrueRange[14](Close)
Ratio=Equity/ATR