coinbase-bot
简单的 Coinbase 价格检查器 Ruby 脚本。
该程序检查 coinbase 上的当前总买卖价格(包括费用),并通过指定的电子邮件地址向用户发送电子邮件警报,或者以指定的价格自动购买或自动出售。
可以使用以下常量设置参数:
BUY_FLOOR = Money.new(56500, "USD") # buy price floor in cents
SELL_CEIL = Money.new(80000, "USD") # sell price ceiling in cents
AUTO_BUY = true # if set to true, performs autobuy at buy floor or lower. if false, sends email alert
AUTO_SELL = true # if set to
2021-07-07 21:03:28
10KB
Ruby
1