Skip to main content

U.S. Treasury: Short Term Treasury Bills (4-Week-52-Week Maturity)

 https://slickdeals.net/f/16642112-u-s-treasury-short-term-treasury-bills-4-week-52-week-maturity-up-to-5-50-interest#comments

 

Besides TreasuryDirect, the Treasury Auctions (i.e. not secondary market) are also purchasable via 5 brokerages: Fidelity, Charles Schwab, TD Ameritrade, E*TRADE, and Vanguard, as far as I'm aware.
Merrill Edge: supposedly could do so, but only over the phone, which incurs a fee. (Correct me if I'm wrong)

Pros and cons amongst each brokerage are not that far apart (in my opinion) but mainly boil down to the following:
-Minimum purchase quantity (most are $1k, while E*TRADE is $5k)
-Automatic reinvestment (Fidelity has this, while E*TRADE does not)

The major differences between buying on TreasuryDirect vs brokerages are the following:
-Convenience. You cannot purchase auction treasuries a month ahead of time at brokerage vs being able to do so on TreasuryDirect. This can be alleviated if you look at the Auction announcement dates at this link: https://home.treasury.gov/system/...hedule.pdf
-Liquidity. You cannot directly sell these on the secondary market on TreasuryDirect vs being able to do so at the brokerages
-Minimum purchase amount. TreasuryDirect has just $100 as minimum, whereas the brokerages are all higher.
-Some brokerages (such as Fidelity) show expected yield, whereas TreasuryDirect doesn't have this (although you can check past auctions or daily rates for an idea)

Google search for your specific brokerage on where to click to buy these and note the minimum purchase amounts.
Such as typing "Buying Treasury at Auction on ETRADE" https://www.youtube.com/watch?v=lxJ7otlJoxw

Hope that helps!

EDIT: Fixed errors, added details of pros and cons, with links to auction schedule, and YT link.



Note, if interested, you may choose to purchase Treasury Bills through your preferred Brokerage Firm

Current Rates (5/10/23): (Coupon Rates [Interest Rates] change daily):
  • 4-Week Maturity: 5.50%
  • 8-Week Maturity: 4.93%
  • 13-Week Maturity: 5.23%
  • 17-Week Maturity: 5.16%
  • 26-Week Maturity: 5.10%
  • 52-Week Maturity: 4.75%


Deal Editor's Notes & Price Research:
  • About this Offer:
    • Interest paid: When the bill matures
    • Minimum purchase : $100
    • In increments of: $100
    • Maximum purchase: $10 million (non-competitive bid)
    • Auction frequency:
      • Every four weeks for 52-week bills
      • Weekly for 4, 8, 13, 17, 26-week bills
      • No regular schedule for Cash Management Bills
      • See the Auction calendar for specific date
    • Taxes: Federal tax due on interest earned. No state or local taxes
  • Refer to forum thread for discussion from the community regarding this offer. -slickdewmaster

Comments

Popular posts from this blog

CKA Simulator Kubernetes 1.22

  https://killer.sh Pre Setup Once you've gained access to your terminal it might be wise to spend ~1 minute to setup your environment. You could set these: alias k = kubectl                         # will already be pre-configured export do = "--dry-run=client -o yaml"     # k get pod x $do export now = "--force --grace-period 0"   # k delete pod x $now Vim To make vim use 2 spaces for a tab edit ~/.vimrc to contain: set tabstop=2 set expandtab set shiftwidth=2 More setup suggestions are in the tips section .     Question 1 | Contexts Task weight: 1%   You have access to multiple clusters from your main terminal through kubectl contexts. Write all those context names into /opt/course/1/contexts . Next write a command to display the current context into /opt/course/1/context_default_kubectl.sh , the command should use kubectl . Finally write a second command doing the same thing into ...

OWASP Top 10 Threats and Mitigations Exam - Single Select

Last updated 4 Aug 11 Course Title: OWASP Top 10 Threats and Mitigation Exam Questions - Single Select 1) Which of the following consequences is most likely to occur due to an injection attack? Spoofing Cross-site request forgery Denial of service   Correct Insecure direct object references 2) Your application is created using a language that does not support a clear distinction between code and data. Which vulnerability is most likely to occur in your application? Injection   Correct Insecure direct object references Failure to restrict URL access Insufficient transport layer protection 3) Which of the following scenarios is most likely to cause an injection attack? Unvalidated input is embedded in an instruction stream.   Correct Unvalidated input can be distinguished from valid instructions. A Web application does not validate a client’s access to a resource. A Web action performs an operation on behalf of the user without checkin...