Hi there, 

I am trying to set up a fee model that accounts for all fees that go along with trading, not just per order fees. For example, I would like to incorporate a monthly fee for a Live Trading subscription with QuantConnect (or with Robinhood). 

Is there any way to do this directly without associating a fee with a particular security or holding? Like a general portfolio fee added?

I have something like this now, but it is attached to my holdings:

for(int yyyy = parameters.startYear; yyyy <= System.DateTime.Now.Year; yyyy++)
{
for(int m = parameters.startMonth; m <= System.DateTime.Now.Month; m++)
{
Schedule.On(DateRules.On(yyyy, m, 1), TimeRules.At(10, 0), () =>
{
holdings.AddNewFee(6.0m);
});
}
}

 

Thanks,
Alix

Author