feat: add equity place, review, and cancel

This commit is contained in:
2026-09-01 12:47:05 -05:00
parent 21170bcf15
commit b4534b2741
4 changed files with 392 additions and 0 deletions
+3
View File
@@ -225,6 +225,7 @@ func TestEquity_toolNames(t *testing.T) {
func TestTools(t *testing.T) {
t.Parallel()
want := []string{
"cancel_equity_order",
"get_equity_fundamentals",
"get_equity_historicals",
"get_equity_news",
@@ -235,6 +236,8 @@ func TestTools(t *testing.T) {
"get_equity_tax_lots",
"get_equity_technical_indicators",
"get_equity_tradability",
"place_equity_order",
"review_equity_order",
}
got := append([]string(nil), equity.Tools()...)
sort.Strings(got)