You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Recently I've found the need to look at the FIX session's configured start / end time. Essentially we have use a shared FIX client across multiple connections with different start/end times, and we're looking to trigger an alert if we receive a logout message during the session time e.g.
func (fa*FixApplication) OnLogout() {
iffa.inSessionTime() {
fa.SendAlert("FIX session logged out during session time")
}
}
Currently that involves us re-parsing the Start/End time config from the session, where this is already done in time_range.go in the internal package. I believe it would be useful to move time_range.go to another package that is exported for public usage, though I'm unsure if there is any specific reason that it hasn't been exported currently.
The text was updated successfully, but these errors were encountered:
Recently I've found the need to look at the FIX session's configured start / end time. Essentially we have use a shared FIX client across multiple connections with different start/end times, and we're looking to trigger an alert if we receive a logout message during the session time e.g.
Currently that involves us re-parsing the Start/End time config from the session, where this is already done in
time_range.go
in theinternal
package. I believe it would be useful to movetime_range.go
to another package that is exported for public usage, though I'm unsure if there is any specific reason that it hasn't been exported currently.The text was updated successfully, but these errors were encountered: