This repository was archived by the owner on Feb 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 263
Add metrics for trade tracking. #574
Draft
debnil
wants to merge
9
commits into
stellar-deprecated:master
Choose a base branch
from
debnil:num-trades-metrics
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from 6 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
51b70ac
Initial commit - create trade metrics handler plugin
debnil 2d78a35
Add handler and tracker interfaces and impls
debnil 92018eb
Create and inject metrics handler.
debnil 7a113bb
Refine API, hook in read trades.
debnil 69bc642
Add metrics to common props.
debnil 40c5d20
Address review - nikhilsaraf
debnil 79364e7
Fix build issue.
debnil 6876075
Merge branch 'master' into num-trades-metrics
debnil ebdc97a
Address review - refactor handler and plugin relation.
debnil File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,34 @@ | ||
| package plugins | ||
|
|
||
| import ( | ||
| "github.com/stellar/kelp/model" | ||
| ) | ||
|
|
||
| // TradeMetricsHandler tracks the number of trades | ||
| type TradeMetricsHandler struct { | ||
| trades []model.Trade | ||
| } | ||
|
|
||
| // MakeTradeMetricsHandler is a factory method for the TradeMetricsHandler | ||
| func MakeTradeMetricsHandler() *TradeMetricsHandler { | ||
| return &TradeMetricsHandler{ | ||
| trades: []model.Trade{}, | ||
| } | ||
| } | ||
|
|
||
| // Reset sets the handler's trades to empty. | ||
| func (h *TradeMetricsHandler) Reset() { | ||
| h.trades = []model.Trade{} | ||
| } | ||
|
|
||
| // GetTrades returns all stored trades. | ||
| func (h *TradeMetricsHandler) GetTrades() []model.Trade { | ||
debnil marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| return h.trades | ||
| } | ||
|
|
||
| // HandleFill handles a new trade | ||
| // Implements FillHandler interface | ||
| func (h *TradeMetricsHandler) HandleFill(trade model.Trade) error { | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. we need to test this tradeMetricsHandler. For now let's have one simple test case, where we add 3 trades:
then we assert that the computed values on the struct returned from this |
||
| h.trades = append(h.trades, trade) | ||
| return nil | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.