Is there a way to access Account trailing max drawdown by code ?
like account.Get(AccountItem.CashValue, Currency.UsDollar)
Thanks
If your broker provides the information to NT, you can use the AccountItem.TrailingMaxDrawdown enum value to get the drawdown. If your broker does not expose that value to NT you might be able to rig up an external fetcher of some sort, but the complexity would be much higher.
double drawdown=account.Get(AccountItem.TrailingMaxDrawdown, Currency.UsDollar);
Perfect.Thank you very much