trading bot


SUBMITTED BY: Guest

DATE: Jan. 13, 2015, 12:23 a.m.

FORMAT: Python

SIZE: 175 Bytes

HITS: 867

  1. def action():
  2. if getTrend()>O && checkMin():
  3. buy(0.01)
  4. else if getTrend()<0 && checkMax():
  5. sell(0.01)
  6. Timer(300, action, ()).start()

comments powered by Disqus