14 lines
258 B
Python
14 lines
258 B
Python
import monitors.large_transfer as lt
|
|
import bn
|
|
import signals.ema_arrangement as maa
|
|
import signals.volume_growing as vg
|
|
|
|
# symbols = bn.symbols()
|
|
|
|
# for s in symbols:
|
|
# maa.run('LINKUSDT', '1h')
|
|
|
|
symbols = bn.symbols()
|
|
|
|
for s in symbols:
|
|
vg.run(s, '1h') |