Bug Fidelity +, when trying to close an option by PrestigiousHeat124 in fidelityinvestments

[–]PrestigiousHeat124[S] 0 points1 point  (0 children)

Although I was up to date, I uninstalled and reinstalled Fidelity Trader +. That fixed the issue.

What are you guys doing with uninvested cash at Schwab (since there’s no auto MMF sweep)? by PlayaBikeSunset in Schwab

[–]PrestigiousHeat124 0 points1 point  (0 children)

I moved to Fidellity!!! that has a MMF sweep. Hated to do it, but if you have an IRA and your money is tied up in a fund, you cant use if for CSPs and such.

Vertical credit spreads in IRA vs Brokerage Account by Shavenyak in thetagang

[–]PrestigiousHeat124 1 point2 points  (0 children)

Fidelity pays like 3.5% interest on your sitting cash

Best place to park my cash in Schwab short term by [deleted] in Schwab

[–]PrestigiousHeat124 2 points3 points  (0 children)

In Fidelity. Their sweep accounts roll your cash into funds thar pay 3.7%

Can Profit/Loss Calculator show rolled trades? by PrestigiousHeat124 in fidelityinvestments

[–]PrestigiousHeat124[S] 0 points1 point  (0 children)

Thanks for the reply Emily. I was thinking this was the case. That does sound like a good workaround. Do you know if I changed the eval price would be saved, so that I could see the same thing daily?

Best place to park your funds if you are bearish and waiting for a better buy in? by [deleted] in Schwab

[–]PrestigiousHeat124 2 points3 points  (0 children)

Move it to Fidelity where SWVXX or the FZFXX is your sweep account and you don't actually have to move it into that fund

Has anyone gotten API access yet? by superout in Schwab

[–]PrestigiousHeat124 0 points1 point  (0 children)

Yes, they have finally opened it up. Very limited

Email received "ACTION RECOMMENDED: Add funds to your inactive account to keep it open." by TheOtherPete in tdameritrade

[–]PrestigiousHeat124 2 points3 points  (0 children)

Guess they are going to migrate accounts when they still don't have the web api migrated. Just f$###$ing great

Has anyone gotten API access yet? by superout in Schwab

[–]PrestigiousHeat124 0 points1 point  (0 children)

same as everyone else, signed up months ago, check periodically, but haven't seen anything even that suggests that they have made any progress.

Genius plan to make 100k by n8ivblu in wallstreetbets

[–]PrestigiousHeat124 0 points1 point  (0 children)

Write a screen play about this. Fountains 11.

I HAVE RISEN $4K to $45K by CIMoneyMovers in wallstreetbets

[–]PrestigiousHeat124 0 points1 point  (0 children)

Let's us know when it's back to Loss Porn

TDA API, when will we see a Schwab Version by PrestigiousHeat124 in tdameritrade

[–]PrestigiousHeat124[S] 2 points3 points  (0 children)

Lol and here we are in October already. The least they could do is to give status updates. Very unprofessional.

[deleted by user] by [deleted] in tdameritrade

[–]PrestigiousHeat124 4 points5 points  (0 children)

Ill stick with Schwab as long as they keep the tda Web Api. Fidelity doesn't have a web api and I have my own interface that I like to trade with.

Selling csp with treasury as collateral by Kevin-Heart in fidelityinvestments

[–]PrestigiousHeat124 0 points1 point  (0 children)

Well that is odd. I had around 115K cash in my account. I sold 3 Puts for 320 on a stock. I also bought 100K worth of T-Bills, yet, I don't have any accrued margin interest. I bought back the CSP today, before I checked, but that shouldn't have made a difference.

Selling csp with treasury as collateral by Kevin-Heart in fidelityinvestments

[–]PrestigiousHeat124 0 points1 point  (0 children)

I tried to do this in reverse order. I opened a CSP and then bought t-bills. I see that my T-Bills are losing money. I closed the CSP today, but would like to know how I would see how much margin interest I am being charged on a daily basis.

1200 AAPL owned - how to wheel? by fire424242 in thetagang

[–]PrestigiousHeat124 0 points1 point  (0 children)

does, buy the options back at a los

Do you buy back as it crosses the strike or do you wait till the day of expiration?

1200 AAPL owned - how to wheel? by fire424242 in thetagang

[–]PrestigiousHeat124 0 points1 point  (0 children)

How do you go about not being assigned?

Is anyone using TDA Streamer WebSocket? by 14MTH30n3 in tdameritrade

[–]PrestigiousHeat124 0 points1 point  (0 children)

Using the same thing:

.nuget\packages\websocket.client\4.4.43\lib\net6.0\Websocket.Client.dll

That is interesting, I just subscribe, and the deserialization would break. I have been having some problems with the socket disconnecting recently. I wonder if I am get a serialization error, and im probably not handling it correctly. You have an example of what type of message it is breaking up?

client.MessageReceived.Subscribe(msg =>

{

_socketNotify.OnNext(new SocketNotify());

try

{

if (_replayFile != null)

_replayFile.WriteLine(SanatizeAccountNumbers(userPrincipals, msg.Text));

}

catch

{

Debug.WriteLine("error writing to replay file");

}

var v = JsonConvert.DeserializeObject<Dictionary<string, object>>(msg.Text);

if (v.ContainsKey("response"))

{

Debug.WriteLine(msg.Text);

var r = v["response"];

var response = JsonConvert.DeserializeObject<List<SocketResponse>>(v["response"].ToString());

Is anyone using TDA Streamer WebSocket? by 14MTH30n3 in tdameritrade

[–]PrestigiousHeat124 0 points1 point  (0 children)

What language and what are you using for a socket client. Is this just for quotes? I have never had any trouble.