-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathexample.py
38 lines (30 loc) · 1.11 KB
/
example.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import pandas as pd
from lib.runner import Runner
import configparser
class ExampleStrategy(object):
"""
A simple example strategy that computes the average price change over
the previous 5 2000ms updates.
"""
def start(self, control):
self.series = pd.DataFrame()
self.control = control
def process(self, kline):
self.series = self.series.append(kline)
if self.series.shape[0] > 5:
print("Average price change over past 5 windows: ", pd.to_numeric(self.series[-5:]["PriceChange"]).mean())
if __name__ == "__main__":
# Example Usage:
#
# Instantiate a `Runner`; providing API credentials, the symbol you wish to
# run your strategy against, and the actual strategy itself. Then simply call
# `.run()` to execute the strategy.
cfg = configparser.ConfigParser()
cfg.read('bot.ini')
strategy = ExampleStrategy()
runner = Runner(
apiKey = cfg['credentials']['ApiKey'],
apiSecret = cfg['credentials']['ApiSecret'],
symbol = cfg['strategy']['Symbol'],
runnable=strategy)
runner.run()