buyAmount
Generates a new buy order
(buy {asset} amount options?)Returns
Parameters
Examples
(buyAmount {AAPL} 200) ;; buys 1.29 shares of AAPL if price is 155
;;=> order {symbol: "AAPL", action: "buy", units: 1.29, ....}
(buyAmount {AAPL} 200 {round: true}) ;; buys 1 shares of AAPL if price is 155
;;=> order {symbol: "AAPL", action: "buy", units: 1, ....}Last updated