- ago
Several times a day over the past several days, signals from the SM are not generating orders in the Order Manager. Once this occurs, since it is a 1-min strategy, it will continue to signal every minute, but orders will not appear. Have to restart WL to get it working again.

Using Tradier streaming data and broker. The trades, as expected, never get to the broker.
0
873
Solved
42 Replies

Reply

Bookmark

Sort
Cone8
 ( 5.88% )
- ago
#1
We're trying to get to the bottom of the Tradier order status issue, but this sounds more insidious.
Anything from Tradier in the Log Viewer? Sounds like something disconnected.
0
- ago
#2
[corrected]
Nothing in the log viewer.
0
Cone8
 ( 5.88% )
- ago
#3
Let's run a poor man's (person?) connection monitor in WealthLab. This script just pings google's DNS 6 or 7 times every 8 seconds. You can run it in the S. Monitor on 1-minute bars, any symbol, polling is fine. If there's a dropout, you'll see a "Ping Test" in Red in the Log Viewer. It also keeps a running log of the pings and the "Roundtrip Time". If you're game, let's see if it finds something on Thursday.

CODE:
/* IMPORTANT! Add References (Tools > Assembly References) to: * System.Net.Ping * System.Net.Primitives * System.ComponentModel.Primitives */ using System; using System.Diagnostics; using System.IO; using System.Net.NetworkInformation; using System.Threading.Tasks; using WealthLab.Backtest; using WealthLab.Core; using WealthLab.Data; using System.Threading; namespace WealthScript2 { public class PingTest : UserStrategyBase { public override void Initialize(BarHistory bars) {          string logFilePath = Path.Combine(WLHost.Instance.DataFolder, $"{DateTime.Now:yyyy-MM-dd}_connection_log.txt");          string pingAddress = "8.8.8.8"; // Google DNS          int pingInterval = 8000; // msec          DateTime dte = DateTime.Now;          using (StreamWriter logWriter = new StreamWriter(logFilePath, append: true))          {             logWriter.WriteLine("Timestamp\t\t\t\tStatus\tRoundtrip Time (ms)");             while((DateTime.Now - dte).TotalSeconds < 56)             {                Ping ping = new Ping();                PingReply reply = ping.SendPingAsync(pingAddress).Result;                string logEntry = $"{DateTime.Now:yyyy-MM-dd HH:mm:ss.fff}\t{reply.Status}\t{reply.RoundtripTime}";                logWriter.WriteLine(logEntry);                WriteToDebugLog(logEntry);                if (reply.Status != IPStatus.Success)                   WLHost.Instance.AddLogItem("Ping Test", $"Connection issue detected!\n{logEntry}", WLColor.Red);                Thread.Sleep(pingInterval);             }          } } public override void Execute(BarHistory bars, int idx) { }    } }
0
- ago
#4
10:43 AM (E) Signal to close IWM option in SM not transmitted to Order Manager (2x). Manually closed position.
10:58 AM Streaming data has stopped. Restarting WL.
11:03 AM Broker manager once again receiving orders from signals
11:38 AM Noticed that streaming data has stopped again. Restarting WL.
11:59 AM Noticed that streaming data has stopped again. Restarting WL.
1:18 PM Order Manager errors on opening position for EEM option
"Unexpected character encountered while parsing value: A. Path '', line 0, position 0.
An error occurred while communicating with the backend." repeated 4 times. Restarting WL
1:22 PM Order Manager is working again.
1:29 PM Order Manager places close on EEM option but it never reaches Tradier. Manually closing position.
2:11 PM Streaming data has stopped again.
Notice Ping stopped running in SM based on WL8 Log File. See gap in timestamp. Probably stops running if streaming data is lost. I will switch to Polling:

QUOTE:

Timestamp Status Roundtrip Time (ms)
2024-06-20 11:12:02.259 Success 27
2024-06-20 11:12:10.286 Success 25
2024-06-20 11:12:18.314 Success 26
2024-06-20 11:12:26.342 Success 25
2024-06-20 11:12:34.370 Success 26
2024-06-20 11:12:42.397 Success 25
2024-06-20 11:12:50.425 Success 25
Timestamp Status Roundtrip Time (ms)
2024-06-20 11:39:08.636 Success 25
2024-06-20 11:39:16.663 Success 26
2024-06-20 11:39:24.690 Success 25
2024-06-20 11:39:32.715 Success 25
2024-06-20 11:39:40.743 Success 26
2024-06-20 11:39:48.769 Success 25
2024-06-20 11:39:56.796 Success 25
Timestamp Status Roundtrip Time (ms)
2024-06-20 12:09:53.538 Success 25
2024-06-20 12:10:01.564 Success 25
2024-06-20 12:10:09.590 Success 25
2024-06-20 12:10:17.617 Success 25
2024-06-20 12:10:25.644 Success 26
2024-06-20 12:10:33.671 Success 25
2024-06-20 12:10:41.697 Success 25


Restarting WL.

3:37 PM Trades for EEM and SPY options in Order Manager never make it to Tradier.
Looks like no disruption in Ping log file:

QUOTE:
Timestamp Status Roundtrip Time (ms)
2024-06-20 09:35:01.660 Success 26
2024-06-20 09:35:09.711 Success 25
2024-06-20 09:35:17.737 Success 25
2024-06-20 09:35:25.765 Success 25
2024-06-20 09:35:33.791 Success 25
2024-06-20 09:35:41.819 Success 26
2024-06-20 09:35:49.845 Success 25
Timestamp Status Roundtrip Time (ms)
2024-06-20 09:36:02.359 Success 25
2024-06-20 09:36:10.385 Success 25
2024-06-20 09:36:18.412 Success 25
2024-06-20 09:36:26.438 Success 25
2024-06-20 09:36:34.465 Success 25
2024-06-20 09:36:42.503 Success 36
2024-06-20 09:36:50.531 Success 25
Timestamp Status Roundtrip Time (ms)
2024-06-20 09:37:02.082 Success 25
2024-06-20 09:37:10.108 Success 25
2024-06-20 09:37:18.135 Success 25
2024-06-20 09:37:26.162 Success 26
2024-06-20 09:37:34.190 Success 26
2024-06-20 09:37:42.216 Success 25
2024-06-20 09:37:50.243 Success 25
Timestamp Status Roundtrip Time (ms)
2024-06-20 09:38:01.661 Success 25
2024-06-20 09:38:09.687 Success 25
2024-06-20 09:38:17.715 Success 25
2024-06-20 09:38:25.741 Success 25
2024-06-20 09:38:33.768 Success 25
2024-06-20 09:38:41.794 Success 25
2024-06-20 09:38:49.821 Success 25


Restarting WL

0
Cone8
 ( 5.88% )
- ago
#5
It's abnormal. Run the connection test and let's see some ping data.
0
- ago
#6
It's been running in SM since the market opened. Can you see log file?

Addendum

Ony one error in Log Viewer from 1:23 PM
QUOTE:
6/20/2024 10:23:09:200
Tradier
Error Replacing Order (EEM240628C00042500 Buy 14 at Market,EEM240628C00042500 Buy 18 at Market): Unexpected character encountered while parsing value: o. Path '', line 0, position 0.
order not in valid state for modifications
JsonReaderException
Unexpected character encountered while parsing value: o. Path '', line 0, position 0.
at Newtonsoft.Json.JsonTextReader.ParseValue()
at Newtonsoft.Json.JsonReader.ReadAndMoveToContent()
at Newtonsoft.Json.JsonReader.ReadForType(JsonContract contract, Boolean hasConverter)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.Deserialize(JsonReader reader, Type objectType, Boolean checkAdditionalContent)
at Newtonsoft.Json.JsonSerializer.DeserializeInternal(JsonReader reader, Type objectType)
at Newtonsoft.Json.JsonConvert.DeserializeObject(String value, Type type, JsonSerializerSettings settings)
at Newtonsoft.Json.JsonConvert.DeserializeObject[T](String value, JsonSerializerSettings settings)
at WealthLab.Tradier.TradierBroker.ReplaceTrade(Transaction oldOrder, Transaction newOrder)


Addendum 2
The above error repeated on EEM option

QUOTE:
6/20/2024 10:51:14:271
Tradier
Error Replacing Order (EEM240628C00042500 Buy 14 at Market,EEM240628C00042500 Buy 21 at Market): Unexpected character encountered while parsing value: A. Path '', line 0, position 0.
An error occurred while communicating with the backend.
JsonReaderException
Unexpected character encountered while parsing value: A. Path '', line 0, position 0.
at Newtonsoft.Json.JsonTextReader.ParseValue()
at Newtonsoft.Json.JsonReader.ReadAndMoveToContent()
at Newtonsoft.Json.JsonReader.ReadForType(JsonContract contract, Boolean hasConverter)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.Deserialize(JsonReader reader, Type objectType, Boolean checkAdditionalContent)
at Newtonsoft.Json.JsonSerializer.DeserializeInternal(JsonReader reader, Type objectType)
at Newtonsoft.Json.JsonConvert.DeserializeObject(String value, Type type, JsonSerializerSettings settings)
at Newtonsoft.Json.JsonConvert.DeserializeObject[T](String value, JsonSerializerSettings settings)
at WealthLab.Tradier.TradierBroker.ReplaceTrade(Transaction oldOrder, Transaction newOrder)


I ran Ping Test in SW and got this error

QUOTE:
Initialize Exception (QQQ) Line 24 - The process cannot access the file 'C:\Users\inner\AppData\Roaming\WealthLab8\2024-06-20_connection_log.txt' because it is being used by another process.
at Microsoft.Win32.SafeHandles.SafeFileHandle.CreateFile(String fullPath, FileMode mode, FileAccess access, FileShare share, FileOptions options)
at Microsoft.Win32.SafeHandles.SafeFileHandle.Open(String fullPath, FileMode mode, FileAccess access, FileShare share, FileOptions options, Int64 preallocationSize, Nullable`1 unixCreateMode)
at System.IO.Strategies.OSFileStreamStrategy..ctor(String path, FileMode mode, FileAccess access, FileShare share, FileOptions options, Int64 preallocationSize, Nullable`1 unixCreateMode)
at WealthScript1.PingTest.Initialize(BarHistory bars) in :line 24
at WealthLab.Backtest.UserStrategyExecutor.CreateService(List`1 symbols)


Addendum 3

Interesting. While EEM option buy continues to fail, WL successfully traded an IWM option. Maybe related to this specific EEM option on backend?

Restarting WL now to see if it will trade EEM option. It did.

Addendum 4
Ping test ran successfully in SW after WL restart
0
Cone8
 ( 5.88% )
- ago
#7
If there's a ping failure, you'll see it in the Log Viewer. Don't open the file unless you want to drill down after the market is closed.

Tradier support said they can't duplicate any of this. We can't do it nearly as regularly as you, but I have seen it a couple times now. Even so, it just leads us back to messaging from Tradier, which is sort of a dead end for now.
0
- ago
#8
There are multiple issues here:
1. Streaming (1-min) disconnects multiple times a day
2. Completed trades not updating the Accounts page, requiring manual updates by click.
3. Trading signals not getting to Order Manager
4. Order Manger placed trades not getting to Broker

This is the first time I have run this type of strategy that uses 1-min streaming data. I haven't documented it as extensively, but I was having similar problems with IB running the same strategy, such as streaming disconnects, in the paper account. However, the Accounts page not updating definitely appears unique to Tradier.

Addendum

I wish I had a way to change to another configuration, or do some additional testing, but it doesn't look like there's an easy path to do that. I would have to re-modify the Tradier strategy to run with IB but perhaps I should and run it with a paper account to see if these problems are duplicated.

Since I Beta-tested the Medved extension, I noticed that once a bug with Medved and in in the extension was fixed, I was no longer getting streaming disconnects. But I don't know if that fix applies to the Tradier implementation.

It would be nice to know whether these are Tradier failures or extension implementation. It's hard to believe Tradier, with their stock-in-trade being their API support, has this many problems completing simple tasks. It seems I'm the first one to report these types of issues to Tradier. I don't know how many other WL users are running this type of strategy with Tradier. If they're out there, I would love to hear their experience.

In the meantime, regardless of the cause, I can't see continuing to run this strategy at Tradier with real money until we have resolutions. Unfortunately, their paper account does not support options (not sure that's relevant) or streaming data (relevant).

Addendum2

What I see happening is that a symbol that fails to get to Tradier Broker has a CancelPending status in the Order Manager that never goes away. The timestamp on the order changes with each new signal, but the status doesn't, which is probably why the multiple orders for that symbol never get to the Tradier Broker.

Addendum3
I just confirmed my theory in Addendum 2. After a signal failed to trade, I went into the Order Manager and "Killed" the CancelPending status trade for the symbol. On the next signal, it traded properly. So it looks like this could be another symptom of this unresolved issue
0
- ago
#9
The subject issue in this post is a symptom of another issue, the status of which you can find here..
0
Cone8
 ( 5.88% )
- ago
#10
There are so many of these threads, I don't know which is most appropriate to respond to.
I want you avoid connecting to Tradier Streaming while trading today.

Don't use Tradier for:
1. Quotes
2. Streaming Charts
3. Streaming for the S. Monitor
4. and, avoid Order Manager manual orders, but if you must ...



Let's see if streaming is interrupting the broker connection.
0
Cone8
 ( 5.88% )
- ago
#11
No need to do this. It was based on something I saw that I've already debunked.
0
Cone8
 ( 5.88% )
- ago
#12
Made good progress on this and seeing the light at the end of the tunnel.
If you're game, give this a try to test a hypothesis and see if it works out.

1. Connect to Tradier.
2. Within one minute, send in a limit order away from the market so that it doesn't execute.
3. If all is as I'm seeing it now, it should go Active, and you can Cancel it.
4. I think you'll be good to go for the day, as long as you have a good connection.

Although we have some work to do (already mostly done) for Detect/Reconnect, It looks like the initial problem is keeping the market socket alive on Tradier's end if you don't get an order in before it's sends the first heartbeat (should occur each minute).

This is preliminary, but I've repeated the test about 4 times and it works each time... and also after a Reconnect.
0
- ago
#13
That's encouraging news! Of course, I'm game to test whatever you want to throw at me. Unfortunately, as the Tradier gremlins would have it, today it is working perfectly. If it breaks again tomorrow, I can try something new.

However, please be aware that I have been also placing limit trades with Tradier and they work fine (placing and executing) but they do not update (when Tradier is broken) the Account page or Order Manager with the fill.

When you wrote to Cancel the limit order as a test, do you care how it is cancelled, i.e., programmatically or using Order Manager manually, or using Tradier's Web interface? For that matter do you care if the limit order is placed programmatically or through Tradier's Web interface?

Addition

I am aware that there are multiple discussions that are related. Initially, it wasn't clear to me that these were all caused by the same underlying issue until I watched trades very carefully. Since then, I have been attempting to terminate related discussions by inserting a link to the "mother" discussion. If you would prefer that I link to a different one, let me know.
0
Cone8
 ( 5.88% )
- ago
#14
I'm still waiting on an answer on this from Tradier, but what I mentioned above was a consistent scenario last Friday and even when testing on Saturday.

Canceling the order is optional (any way you want). What appeared important was receiving a heartbeat in the first minute - that's in the background, but if it doesn't occur it's an early indication that the session is already lost.

Now (in dev) we're successfully reconnecting on a different sessionId after detecting this condition. Even so, the failed heartbeat may occur again immediately. What I found was that placing an order within the first minute always resulted in a successful stable connection thereafter...

...for at least some hours - 2 or even maybe 6 -before getting a disconnect again. There's always a chance these disconnects are somehow related to my ISP, but it seems doubtful. Imho, Tradier needs to find the primary cause on their end.

0
- ago
#15
WL shut down unexpectedly (internal error). When it restarted, Tradier was failing again. Here's what I tried based on my understanding of your request:

1. I placed an order using Tradier website for an option contract with an OOM limit.
2. Tradier showed order as pending.
3. I successfully cancelled order using Tradier website.

Tradier still did not process fills correctly after trying this. Of course, the Order Manager was not involved in the test transaction. Let me know if there's anything else you want me to try.

0
Cone8
 ( 5.88% )
- ago
#16
Well, you need to place the order with WealthLab within the first minute after "Connect".

The idea is to "jump start" the accounts session that just connected.
0
- ago
#17
With Wealth-Lab programmatically or manually from Order Manager?
0
Cone8
 ( 5.88% )
- ago
#18
Either. Both are placed the same way.
0
- ago
#19
I placed a limit order within 1 min after WL restart, then cancelled it. No effect on fixing Tradier sync issue on subsequent trades.
0
Cone8
 ( 5.88% )
- ago
#20
okay, good to know. That technique hasn't failed for me yet, even though later the connection can still drop off - maybe 30 minutes later or maybe 6 hours later.
0
Cone8
 ( 5.88% )
- ago
#21
Please install Tradier Build 28.

We think that the timing of the heartbeat on the accounts socket was too similar to the reconnect timeout setting.
In our testing, we weren't able to "break it" again after increasing the timeout. We'll be glad to hear reports from users using Build 28 next week.

Aside, we improved the accuracy of streaming data, which should very closely match historical charts now using the time-of-sale stream (full-lots only) instead of the conflated "trades" data.
0
Best Answer
- ago
#22
I've run B28 for 3 days now with a few dozen auto-trades. No errors. Thank you, thank you, thank you!

I'm curious whether this was a shortcoming on Tradier's side, or just another typical issue that arises when implementing a new broker extension. Is what you found and coded applicable to the Schwab WebSocket implementation as well?
0
Cone8
 ( 5.88% )
- ago
#23
Great, thanks for the confirmation.

I thought I explained it in Post #21. The difference with Tradier is that the [typical] 1-minute heartbeat is relative to the connect time instead of "regular" intervals, like 09:31:00, 09:32:00, etc. If you connect at 09:28:23, then Tradier's heartbeat for your connection is at 09:29:23, 09:30:23, etc.

The problem was that the socket timeout (no activity) was also 60 seconds. So milliseconds were the difference of keeping or resetting a connection. The account socket is inactive most of the time, unless you're sending orders in every minute; the heartbeat keeps it active so that it's not reset.

But even after a reset, the same issue would keep occurring. If the heartbeat were sent at any other time (as we're accustomed to with every other integration), it's very unlikely to have ever had an issue.
1
- ago
#24
Interesting. Thanks for the detail. I can see why it might have appeared to be intermittent. More like random.

Was this a hidden "feature" of Tradier's implementation that was undocumented?
0
Cone8
 ( 5.88% )
- ago
#25
It was just an integration issue that wasn't easy to get a handle on. Again, if you set up a strategy to trade every minute (like we're prone to do when trying to duplicate a problem like this one) you'd never have seen it.
0
- ago
#26
Good detective work! These integrations are not straightforward. Thanks for the backstory.
0
- ago
#27
I'm sorry to say that this problem started happening again today. Placed and executed trades status in the Order Manager remains as "Placed". Trades are not reflected in the Accounts window unless and until "Request Updates from Broker(s)" is clicked.

WL restart does not fix problem.
0
Cone8
 ( 5.88% )
- ago
#28
If you're running into the "too many sessions" issue, then you don't have a fix for that yet.
Anyway, what does the Log Viewer show? (Filter for Tradier)
0
- ago
#29
QUOTE:
If you're running into the "too many sessions" issue, then you don't have a fix for that yet.

That issue has not shown up today.

QUOTE:
Anyway, what does the Log Viewer show? (Filter for Tradier)

No errors in the Log Viewer. That is typical with this problem.

0
Cone8
 ( 5.88% )
- ago
#30
Okay, it's a different probelm then. Let's start over.
For the following we're talking only about orders that show "Placed" status.

1. Are the orders making it to Tradier?
2. What types of orders are they? Be specific.
3. Are you using symbol mapping? (Non-Tradier Data Provider mapped to a Tradier symbol.)
0
- ago
#31
QUOTE:
1. Are the orders making it to Tradier?

Yes
QUOTE:
2. What types of orders are they? Be specific.

Buy / Sell Market orders for options
QUOTE:
3. Are you using symbol mapping? (Non-Tradier Data Provider mapped to a Tradier symbol.)

No

Addendum

QUOTE:
Okay, it's a different probelm then.

If you mean different than the "too many sessions" issue, then yes. I don't think they are related. But if you mean the topic issue of this post, then no. It's acting the same way. I have a feeling something changed on the Tradier side that made the post topic fix stop working. Nothing has changed on the WL side, including the API extension, since the last release, and it was working perfectly.
0
- ago
#32
@Cone this morning it appears to be working again. Since you've worked with Tradier tech team directly on this problem previously, could you reach out to them to ask what they changed on their side in the last couple of days to break the fix and then unbreak it?
0
Cone8
 ( 5.88% )
- ago
#33
You're only assuming that something changed but probably didn't. Let's just hope it keeps working for you. We are not and haven't been seeing any issues. I have seen intermittent reconnects, though very infrequent - maybe twice a day (and usually overnight). I'd call that normal because internet dropouts can happen.
0
- ago
#34
If you're correct, that would mean the fix made it happen less often but did not eliminate the issue completely.

Update
It appears to be working again today. I will post again if it fails.
0
- ago
#35
I just got these log errors today and the "too many sessions" problem reappeared.

QUOTE:
"9/17/2024 08:30:11:652" "Tradier" "user/profile Get empty"
"9/17/2024 08:54:59:661" "Tradier" "08:54:59.660 Tradier Broker socket disconnected: Lost; Reconnecting..."
"9/17/2024 08:54:59:677" "Tradier" "Streaming Disconnected - attempting Reconnect: Lost, CloseStatus: , SessionId: 0c4a4303-f2b5-4324-9f57-2fc6d70dca07"
"9/17/2024 08:55:15:661" "Tradier" "Streaming Reconnect Successful"
"9/17/2024 08:55:15:925" "Tradier" "Tradier Streaming Reconnected after Lost on sessionID: 0c4a4303-f2b5-4324-9f57-2fc6d70dca07"
"9/17/2024 08:55:16:194" "Tradier" "08:55:16.194 Tradier Broker socket disconnected: ByUser; Reconnecting..."
"9/17/2024 08:55:17:791" "Tradier" "user/profile Get empty"
"9/17/2024 08:55:17:791" "Tradier" "08:55:17.791 Initiating Tradier accounts socket..."
"9/17/2024 08:55:18:050" "Tradier" "08:55:18.050 Tradier Connected on sessionID: c8b7a102-74eb-41a6-9064-f4b47c89fd9c"
"9/17/2024 08:55:18:175" "Tradier" "08:55:18.175 Tradier Broker socket disconnected: ByServer; Reconnecting..."
"9/17/2024 08:55:18:176" "Tradier" "08:55:18.176 Tradier Broker: too many sessions requested. Connect aborted."
"9/17/2024 08:55:18:291" "Tradier" "08:55:18.291 Tradier Broker socket disconnected: Lost; Reconnecting..."
"9/17/2024 08:55:18:311" "Tradier" "08:55:18.311 Tradier Broker socket disconnected: ByUser; Reconnecting..."
"9/17/2024 08:55:18:546" "Tradier" "08:55:18.546 Tradier Broker reconnected after Lost"
"9/17/2024 08:55:19:216" "Tradier" "08:55:19.216 Tradier Broker socket disconnected: ByUser; Reconnecting..."
"9/17/2024 08:55:20:055" "Tradier" "08:55:20.055 Tradier Broker socket disconnected: ByUser; Reconnecting..."
0
- ago
#36
QUOTE:
Which build (Tradier)?

Tradier B32
And what, if anything, were you doing?
QUOTE:
It just closed a position at the same timestamp

QUOTE:
And now we're off topic.

Yes, realized that and moved it here.
0
Cone8
 ( 5.88% )
- ago
#37
The evidence shows a bad internet connection since both the streaming and accounts sockets were lost. The streaming socket reconnected but for whatever reason Tradier gave the "too many" for the accounts connection. By the current design, it's not possible for the Provider to get more than one session ID every 4 minutes and 30 seconds, and per Tradier it needs to be changed every 5 minutes anyway. I'll play with moving that closer to 5 minutes - and breaking my connection to simulate yours.
0
- ago
#38
@Cone, thanks for the detail. Do you think the Internet fail was on my side or Tradier's? Or could it be either? I did not notice any other Internet connection problems.

It's odd that it succeeded in placing a trade on the bar that it failed on.
0
- ago
#39
Bad 15 min period today for Broker Disconnects. Did not get "too many connections" error, however. Does this look like a failure on Tradier's side or mine? I ran IB intraday data all day today with no errors. I realize the data sockets and broker sockets are different. Or maybe IB TWS is handing data disconnect errors, so we don't see that they are happening?

QUOTE:
"9/20/2024 14:32:08:093" "Tradier" "14:32:08.092 Tradier Broker socket disconnected: NoMessageReceived; Reconnecting..."
"9/20/2024 14:32:11:118" "Tradier" "14:32:11.118 Tradier Broker socket disconnected: ByUser; Reconnecting..."
"9/20/2024 14:32:12:640" "Tradier" "user/profile Get empty"
"9/20/2024 14:32:12:645" "Tradier" "14:32:12.645 Initiating Tradier accounts socket..."
"9/20/2024 14:32:14:028" "Tradier" "14:32:14.028 Tradier Connected on sessionID: d7266368-2452-4bff-88a8-dd8feaaaaa3c"
"9/20/2024 14:32:14:113" "Tradier" "14:32:14.113 Tradier Broker socket disconnected: ByServer; Reconnecting..."
"9/20/2024 14:32:14:980" "Tradier" "14:32:14.980 Tradier Broker socket disconnected: ByUser; Reconnecting..."
"9/20/2024 14:32:15:834" "Tradier" "14:32:15.834 Tradier Broker socket disconnected: ByUser; Reconnecting..."
"9/20/2024 14:32:27:565" "Tradier" "user/profile Get empty"
"9/20/2024 14:32:27:565" "Tradier" "14:32:27.565 Initiating Tradier accounts socket..."
"9/20/2024 14:32:28:843" "Tradier" "14:32:28.843 Tradier Connected on sessionID: d7266368-2452-4bff-88a8-dd8feaaaaa3c"
"9/20/2024 14:32:28:924" "Tradier" "14:32:28.924 Tradier Broker socket disconnected: ByServer; Reconnecting..."
"9/20/2024 14:32:28:940" "Tradier" "14:32:28.940 Tradier Broker socket disconnected: Exit; Reconnecting..."
"9/20/2024 14:32:30:790" "Tradier" "14:32:30.790 Tradier Broker socket disconnected: Exit; Reconnecting..."
"9/20/2024 14:32:43:748" "Tradier" "user/profile Get empty"
"9/20/2024 14:32:43:748" "Tradier" "14:32:43.748 Initiating Tradier accounts socket..."
"9/20/2024 14:32:45:026" "Tradier" "14:32:45.026 Tradier Connected on sessionID: d7266368-2452-4bff-88a8-dd8feaaaaa3c"
"9/20/2024 14:32:45:110" "Tradier" "14:32:45.110 Tradier Broker socket disconnected: ByServer; Reconnecting..."
"9/20/2024 14:32:59:830" "Tradier" "user/profile Get empty"
"9/20/2024 14:32:59:830" "Tradier" "14:32:59.830 Initiating Tradier accounts socket..."
"9/20/2024 14:33:01:098" "Tradier" "14:33:01.098 Tradier Connected on sessionID: d7266368-2452-4bff-88a8-dd8feaaaaa3c"
"9/20/2024 14:33:01:179" "Tradier" "14:33:01.179 Tradier Broker socket disconnected: ByServer; Reconnecting..."
"9/20/2024 14:33:01:205" "Tradier" "14:33:01.205 Tradier Broker socket disconnected: ByUser; Reconnecting..."
"9/20/2024 14:33:03:053" "Tradier" "14:33:03.053 Tradier Broker socket disconnected: ByUser; Reconnecting..."
"9/20/2024 14:33:16:037" "Tradier" "user/profile Get empty"
"9/20/2024 14:33:16:037" "Tradier" "14:33:16.037 Initiating Tradier accounts socket..."
"9/20/2024 14:33:17:406" "Tradier" "14:33:17.406 Tradier Connected on sessionID: d7266368-2452-4bff-88a8-dd8feaaaaa3c"
"9/20/2024 14:33:17:487" "Tradier" "14:33:17.487 Tradier Broker socket disconnected: ByServer; Reconnecting..."
"9/20/2024 14:33:17:504" "Tradier" "14:33:17.504 Tradier Broker socket disconnected: Exit; Reconnecting..."
"9/20/2024 14:33:20:619" "Tradier" "14:33:20.619 Tradier Broker socket disconnected: Exit; Reconnecting..."
"9/20/2024 14:33:32:069" "Tradier" "user/profile Get empty"
"9/20/2024 14:33:32:069" "Tradier" "14:33:32.069 Initiating Tradier accounts socket..."
"9/20/2024 14:33:33:344" "Tradier" "14:33:33.344 Tradier Connected on sessionID: d7266368-2452-4bff-88a8-dd8feaaaaa3c"
"9/20/2024 14:33:33:431" "Tradier" "14:33:33.431 Tradier Broker socket disconnected: ByServer; Reconnecting..."
"9/20/2024 14:33:48:152" "Tradier" "user/profile Get empty"
"9/20/2024 14:33:48:152" "Tradier" "14:33:48.152 Initiating Tradier accounts socket..."
"9/20/2024 14:33:49:424" "Tradier" "14:33:49.424 Tradier Connected on sessionID: d7266368-2452-4bff-88a8-dd8feaaaaa3c"
"9/20/2024 14:33:49:505" "Tradier" "14:33:49.505 Tradier Broker socket disconnected: ByServer; Reconnecting..."
"9/20/2024 14:33:49:517" "Tradier" "14:33:49.517 Tradier Broker socket disconnected: ByUser; Reconnecting..."
"9/20/2024 14:33:51:678" "Tradier" "14:33:51.678 Tradier Broker socket disconnected: ByUser; Reconnecting..."
"9/20/2024 14:34:04:404" "Tradier" "user/profile Get empty"
"9/20/2024 14:34:04:404" "Tradier" "14:34:04.404 Initiating Tradier accounts socket..."
"9/20/2024 14:34:05:676" "Tradier" "14:34:05.676 Tradier Connected on sessionID: d7266368-2452-4bff-88a8-dd8feaaaaa3c"
"9/20/2024 14:34:05:759" "Tradier" "14:34:05.759 Tradier Broker socket disconnected: ByServer; Reconnecting..."
"9/20/2024 14:34:05:772" "Tradier" "14:34:05.772 Tradier Broker socket disconnected: Exit; Reconnecting..."
"9/20/2024 14:34:07:619" "Tradier" "14:34:07.619 Tradier Broker socket disconnected: Exit; Reconnecting..."
"9/20/2024 14:34:20:583" "Tradier" "user/profile Get empty"
"9/20/2024 14:34:20:583" "Tradier" "14:34:20.583 Initiating Tradier accounts socket..."
"9/20/2024 14:34:21:854" "Tradier" "14:34:21.854 Tradier Connected on sessionID: d7266368-2452-4bff-88a8-dd8feaaaaa3c"
"9/20/2024 14:34:21:935" "Tradier" "14:34:21.935 Tradier Broker socket disconnected: ByServer; Reconnecting..."
"9/20/2024 14:34:36:660" "Tradier" "user/profile Get empty"
"9/20/2024 14:34:36:665" "Tradier" "14:34:36.665 Initiating Tradier accounts socket..."
"9/20/2024 14:34:37:934" "Tradier" "14:34:37.934 Tradier Connected on sessionID: d7266368-2452-4bff-88a8-dd8feaaaaa3c"
"9/20/2024 14:34:38:016" "Tradier" "14:34:38.016 Tradier Broker socket disconnected: ByServer; Reconnecting..."
"9/20/2024 14:34:38:033" "Tradier" "14:34:38.033 Tradier Broker socket disconnected: ByUser; Reconnecting..."
"9/20/2024 14:34:38:045" "Tradier" "14:34:38.045 Tradier Broker socket disconnected: Lost; Reconnecting..."
"9/20/2024 14:34:38:287" "Tradier" "14:34:38.287 Tradier Broker reconnected after Lost"
"9/20/2024 14:34:39:884" "Tradier" "14:34:39.884 Tradier Broker socket disconnected: ByUser; Reconnecting..."
"9/20/2024 14:34:40:693" "Tradier" "14:34:40.693 Tradier Broker socket disconnected: ByUser; Reconnecting..."
"9/20/2024 14:34:52:901" "Tradier" "user/profile Get empty"
"9/20/2024 14:34:52:901" "Tradier" "14:34:52.901 Initiating Tradier accounts socket..."
"9/20/2024 14:34:54:179" "Tradier" "14:34:54.179 Tradier Connected on sessionID: c75d6864-2a68-48b8-9672-6b13c90c0f55"
"9/20/2024 14:34:54:272" "Tradier" "14:34:54.272 Tradier Broker socket disconnected: Exit; Reconnecting..."
"9/20/2024 14:34:56:125" "Tradier" "14:34:56.125 Tradier Broker socket disconnected: Exit; Reconnecting..."
"9/20/2024 14:35:09:085" "Tradier" "user/profile Get empty"
"9/20/2024 14:35:09:085" "Tradier" "14:35:09.085 Initiating Tradier accounts socket..."
"9/20/2024 14:35:10:351" "Tradier" "14:35:10.351 Tradier Connected on sessionID: c75d6864-2a68-48b8-9672-6b13c90c0f55"
"9/20/2024 14:35:25:167" "Tradier" "user/profile Get empty"
"9/20/2024 14:35:25:167" "Tradier" "14:35:25.167 Initiating Tradier accounts socket..."
"9/20/2024 14:35:26:513" "Tradier" "14:35:26.513 Tradier Connected on sessionID: c75d6864-2a68-48b8-9672-6b13c90c0f55"
"9/20/2024 14:35:26:620" "Tradier" "14:35:26.620 Tradier Broker socket disconnected: Exit; Reconnecting..."
"9/20/2024 14:35:29:523" "Tradier" "14:35:29.523 Tradier Broker socket disconnected: Exit; Reconnecting..."
"9/20/2024 14:35:41:239" "Tradier" "user/profile Get empty"
"9/20/2024 14:35:41:240" "Tradier" "14:35:41.240 Initiating Tradier accounts socket..."
"9/20/2024 14:35:42:507" "Tradier" "14:35:42.507 Tradier Connected on sessionID: c75d6864-2a68-48b8-9672-6b13c90c0f55"
"9/20/2024 15:41:12:957" "Tradier" "user/profile Get empty"
"9/20/2024 15:41:12:958" "Tradier" "15:41:12.958 Initiating Tradier accounts socket..."
"9/20/2024 15:41:14:365" "Tradier" "15:41:14.365 Tradier Connected on sessionID: c75d6864-2a68-48b8-9672-6b13c90c0f55"
"9/20/2024 15:41:14:447" "Tradier" "15:41:14.447 Tradier Broker socket disconnected: ByServer; Reconnecting..."
"9/20/2024 15:41:14:477" "Tradier" "15:41:14.477 Tradier Broker socket disconnected: ByUser; Reconnecting..."
"9/20/2024 15:41:16:467" "Tradier" "15:41:16.467 Tradier Broker socket disconnected: Lost; Reconnecting..."
"9/20/2024 15:41:16:721" "Tradier" "15:41:16.721 Tradier Broker reconnected after Lost"
"9/20/2024 15:41:17:416" "Tradier" "15:41:17.416 Tradier Broker socket disconnected: ByUser; Reconnecting..."
"9/20/2024 15:41:18:344" "Tradier" "15:41:18.344 Tradier Broker socket disconnected: ByUser; Reconnecting..."
"9/20/2024 15:41:27:796" "Tradier" "user/profile Get empty"
"9/20/2024 15:41:27:796" "Tradier" "15:41:27.796 Initiating Tradier accounts socket..."
"9/20/2024 15:41:29:062" "Tradier" "15:41:29.062 Tradier Connected on sessionID: c75d6864-2a68-48b8-9672-6b13c90c0f55"
"9/20/2024 15:41:29:144" "Tradier" "15:41:29.144 Tradier Broker socket disconnected: ByServer; Reconnecting..."
"9/20/2024 15:41:29:160" "Tradier" "15:41:29.160 Tradier Broker socket disconnected: Exit; Reconnecting..."
"9/20/2024 15:41:31:000" "Tradier" "15:41:31.000 Tradier Broker socket disconnected: Exit; Reconnecting..."
"9/20/2024 15:41:43:971" "Tradier" "user/profile Get empty"
"9/20/2024 15:41:43:971" "Tradier" "15:41:43.971 Initiating Tradier accounts socket..."
"9/20/2024 15:41:45:241" "Tradier" "15:41:45.241 Tradier Connected on sessionID: c75d6864-2a68-48b8-9672-6b13c90c0f55"
"9/20/2024 15:41:45:322" "Tradier" "15:41:45.322 Tradier Broker socket disconnected: ByServer; Reconnecting..."
"9/20/2024 15:42:00:067" "Tradier" "user/profile Get empty"
"9/20/2024 15:42:00:067" "Tradier" "15:42:00.067 Initiating Tradier accounts socket..."
"9/20/2024 15:42:01:335" "Tradier" "15:42:01.335 Tradier Connected on sessionID: c75d6864-2a68-48b8-9672-6b13c90c0f55"
"9/20/2024 15:42:01:417" "Tradier" "15:42:01.417 Tradier Broker socket disconnected: ByServer; Reconnecting..."
"9/20/2024 15:42:01:425" "Tradier" "15:42:01.425 Tradier Broker socket disconnected: Exit; Reconnecting..."
"9/20/2024 15:42:03:260" "Tradier" "15:42:03.260 Tradier Broker socket disconnected: Exit; Reconnecting..."
"9/20/2024 15:42:16:256" "Tradier" "user/profile Get empty"
"9/20/2024 15:42:16:256" "Tradier" "15:42:16.256 Initiating Tradier accounts socket..."
"9/20/2024 15:42:17:606" "Tradier" "15:42:17.606 Tradier Connected on sessionID: c75d6864-2a68-48b8-9672-6b13c90c0f55"
"9/20/2024 15:42:17:693" "Tradier" "15:42:17.693 Tradier Broker socket disconnected: ByServer; Reconnecting..."
"9/20/2024 15:42:32:469" "Tradier" "user/profile Get empty"
"9/20/2024 15:42:32:469" "Tradier" "15:42:32.469 Initiating Tradier accounts socket..."
"9/20/2024 15:42:33:739" "Tradier" "15:42:33.739 Tradier Connected on sessionID: c75d6864-2a68-48b8-9672-6b13c90c0f55"
"9/20/2024 15:42:33:817" "Tradier" "15:42:33.817 Tradier Broker socket disconnected: ByServer; Reconnecting..."
"9/20/2024 15:42:33:831" "Tradier" "15:42:33.831 Tradier Broker socket disconnected: ByUser; Reconnecting..."
"9/20/2024 15:42:33:833" "Tradier" "15:42:33.833 Tradier Broker socket disconnected: Lost; Reconnecting..."
"9/20/2024 15:42:34:123" "Tradier" "15:42:34.122 Tradier Broker reconnected after Lost"
"9/20/2024 15:42:35:704" "Tradier" "15:42:35.704 Tradier Broker socket disconnected: ByUser; Reconnecting..."
"9/20/2024 15:42:36:536" "Tradier" "15:42:36.535 Tradier Broker socket disconnected: ByUser; Reconnecting..."
"9/20/2024 15:42:48:557" "Tradier" "user/profile Get empty"
"9/20/2024 15:42:48:557" "Tradier" "15:42:48.557 Initiating Tradier accounts socket..."
"9/20/2024 15:42:49:882" "Tradier" "15:42:49.882 Tradier Connected on sessionID: c75d6864-2a68-48b8-9672-6b13c90c0f55"
"9/20/2024 15:42:49:963" "Tradier" "15:42:49.963 Tradier Broker socket disconnected: ByServer; Reconnecting..."
"9/20/2024 15:42:49:973" "Tradier" "15:42:49.973 Tradier Broker socket disconnected: Exit; Reconnecting..."
"9/20/2024 15:42:51:852" "Tradier" "15:42:51.852 Tradier Broker socket disconnected: Exit; Reconnecting..."
"9/20/2024 15:43:04:617" "Tradier" "user/profile Get empty"
"9/20/2024 15:43:04:617" "Tradier" "15:43:04.617 Initiating Tradier accounts socket..."
"9/20/2024 15:43:05:886" "Tradier" "15:43:05.886 Tradier Connected on sessionID: c75d6864-2a68-48b8-9672-6b13c90c0f55"
"9/20/2024 15:43:05:973" "Tradier" "15:43:05.973 Tradier Broker socket disconnected: ByServer; Reconnecting..."
"9/20/2024 15:43:20:918" "Tradier" "user/profile Get empty"
"9/20/2024 15:43:20:918" "Tradier" "15:43:20.918 Initiating Tradier accounts socket..."
"9/20/2024 15:43:22:231" "Tradier" "15:43:22.231 Tradier Connected on sessionID: c75d6864-2a68-48b8-9672-6b13c90c0f55"
"9/20/2024 15:43:22:347" "Tradier" "15:43:22.347 Tradier Broker socket disconnected: ByServer; Reconnecting..."
"9/20/2024 15:43:22:358" "Tradier" "15:43:22.358 Tradier Broker socket disconnected: Exit; Reconnecting..."
"9/20/2024 15:43:25:259" "Tradier" "15:43:25.259 Tradier Broker socket disconnected: Exit; Reconnecting..."
"9/20/2024 15:43:36:957" "Tradier" "user/profile Get empty"
"9/20/2024 15:43:36:957" "Tradier" "15:43:36.957 Initiating Tradier accounts socket..."
"9/20/2024 15:43:38:223" "Tradier" "15:43:38.223 Tradier Connected on sessionID: c75d6864-2a68-48b8-9672-6b13c90c0f55"
"9/20/2024 15:43:38:304" "Tradier" "15:43:38.304 Tradier Broker socket disconnected: ByServer; Reconnecting..."
"9/20/2024 15:43:53:038" "Tradier" "user/profile Get empty"
"9/20/2024 15:43:53:038" "Tradier" "15:43:53.038 Initiating Tradier accounts socket..."
"9/20/2024 15:43:54:314" "Tradier" "15:43:54.314 Tradier Connected on sessionID: c75d6864-2a68-48b8-9672-6b13c90c0f55"
"9/20/2024 15:43:54:396" "Tradier" "15:43:54.396 Tradier Broker socket disconnected: ByServer; Reconnecting..."
"9/20/2024 15:43:54:409" "Tradier" "15:43:54.409 Tradier Broker socket disconnected: ByUser; Reconnecting..."
"9/20/2024 15:43:57:240" "Tradier" "15:43:57.240 Tradier Broker socket disconnected: ByUser; Reconnecting..."
"9/20/2024 15:44:09:979" "Tradier" "user/profile Get empty"
"9/20/2024 15:44:09:980" "Tradier" "15:44:09.980 Initiating Tradier accounts socket..."
"9/20/2024 15:44:11:251" "Tradier" "15:44:11.251 Tradier Connected on sessionID: c75d6864-2a68-48b8-9672-6b13c90c0f55"
"9/20/2024 15:44:11:342" "Tradier" "15:44:11.342 Tradier Broker socket disconnected: ByServer; Reconnecting..."
"9/20/2024 15:44:11:390" "Tradier" "15:44:11.390 Tradier Broker socket disconnected: Exit; Reconnecting..."
"9/20/2024 15:44:13:181" "Tradier" "15:44:13.181 Tradier Broker socket disconnected: Exit; Reconnecting..."
"9/20/2024 15:44:25:425" "Tradier" "user/profile Get empty"
"9/20/2024 15:44:25:425" "Tradier" "15:44:25.425 Initiating Tradier accounts socket..."
"9/20/2024 15:44:26:774" "Tradier" "15:44:26.774 Tradier Connected on sessionID: c75d6864-2a68-48b8-9672-6b13c90c0f55"
"9/20/2024 15:44:26:856" "Tradier" "15:44:26.856 Tradier Broker socket disconnected: ByServer; Reconnecting..."
"9/20/2024 15:44:41:480" "Tradier" "user/profile Get empty"
"9/20/2024 15:44:41:480" "Tradier" "15:44:41.480 Initiating Tradier accounts socket..."
"9/20/2024 15:44:42:763" "Tradier" "15:44:42.763 Tradier Connected on sessionID: 30894687-4083-4d19-94e2-d0aa16debf63"
"9/20/2024 15:44:42:864" "Tradier" "15:44:42.864 Tradier Broker socket disconnected: Lost; Reconnecting..."
"9/20/2024 15:44:43:103" "Tradier" "15:44:43.103 Tradier Broker reconnected after Lost"
"9/20/2024 15:44:43:104" "Tradier" "15:44:43.104 Tradier Broker reconnected after Lost"
"9/20/2024 15:44:43:107" "Tradier" "15:44:43.107 Tradier Broker reconnected after Lost"
"9/20/2024 15:44:44:723" "Tradier" "15:44:44.723 Tradier Broker socket disconnected: ByUser; Reconnecting..."
"9/20/2024 15:44:45:532" "Tradier" "15:44:45.532 Tradier Broker socket disconnected: ByUser; Reconnecting..."
"9/20/2024 15:44:57:548" "Tradier" "user/profile Get empty"
"9/20/2024 15:44:57:548" "Tradier" "15:44:57.548 Initiating Tradier accounts socket..."
"9/20/2024 15:44:58:820" "Tradier" "15:44:58.820 Tradier Connected on sessionID: 30894687-4083-4d19-94e2-d0aa16debf63"
"9/20/2024 15:44:58:921" "Tradier" "15:44:58.921 Tradier Broker socket disconnected: Exit; Reconnecting..."
"9/20/2024 15:45:00:759" "Tradier" "15:45:00.759 Tradier Broker socket disconnected: Exit; Reconnecting..."
"9/20/2024 15:45:13:725" "Tradier" "user/profile Get empty"
"9/20/2024 15:45:13:726" "Tradier" "15:45:13.726 Initiating Tradier accounts socket..."
"9/20/2024 15:45:15:000" "Tradier" "15:45:15.000 Tradier Connected on sessionID: 30894687-4083-4d19-94e2-d0aa16debf63"
"9/20/2024 15:45:29:809" "Tradier" "user/profile Get empty"
"9/20/2024 15:45:29:809" "Tradier" "15:45:29.809 Initiating Tradier accounts socket..."
"9/20/2024 15:45:31:092" "Tradier" "15:45:31.092 Tradier Connected on sessionID: 30894687-4083-4d19-94e2-d0aa16debf63"
"9/20/2024 15:45:31:426" "Tradier" "15:45:31.426 Tradier Broker reconnected after Lost"
"9/20/2024 15:45:31:788" "Tradier" "Connected"

0
Cone8
 ( 5.88% )
- ago
#40
We're still working on it and actually put in many hours of investigation and testing last week.
We've finally "cracked the code" and will have something that works well for you next week.
0
- ago
#41
Wow, that's great! Sorry the Tradier stuff has taken so much of your time. :(
0
Cone8
 ( 5.88% )
- ago
#42
Tradier build 34 is ready.. Please give it a go!
0

Reply

Bookmark

Sort