Am I using it incorrectly? Or is there another way to change this value from the default of $100,000 for my ?
From
public class Account : ISnapShotSerializable
[SnapShotInclude(true)]
public double SimulatorInitialCash { get; set; }
Edit: I even tried calling UpdateCashValue() but the balance stayed the same, $100,000.00.
Account.SimulatorInitialCash = 9888777.0; Account.UpdateCashValue(true);

Comment