-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathrun_example.py
53 lines (50 loc) · 1.53 KB
/
run_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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# flake8: noqa
from fast_trade import run_backtest, prepare_df
from fast_trade.validate_backtest import validate_backtest
from fast_trade.archive.db_helpers import get_kline
import datetime
strategy = {
"freq": "5Min",
"any_enter": [],
"any_exit": [],
"enter": [
["rsi", "<", 30],
["bbands_bbands_bb_lower", ">", "close"],
],
"exit": [
["rsi", ">", 70],
["bbands_bbands_bb_upper", "<", "close"],
],
"datapoints": [
{"name": "ema", "transformer": "ema", "args": [5]},
{"name": "sma", "transformer": "sma", "args": [20]},
{"name": "rsi", "transformer": "rsi", "args": [14]},
{"name": "obv", "transformer": "obv", "args": []},
{"name": "bbands", "transformer": "bbands", "args": [20, 2]},
],
"base_balance": 1000.0,
"exit_on_end": False,
"comission": 0.0,
"trailing_stop_loss": 0.0,
"lot_size_perc": 1.0,
"max_lot_size": 0.0,
"start_date": datetime.datetime(2024, 10, 1, 0, 0),
"end_date": datetime.datetime(2025, 2, 26, 0, 0),
"rules": None,
"symbol": "BTC-USDT",
"exchange": "coinbase",
}
if __name__ == "__main__":
# get the dataframe
# print(res)
df = get_kline(
"BTCUSDT", "binanceus", start_date="2025-01-01", end_date="2025-01-31"
)
prepped = prepare_df(df, strategy)
# res = validate_backtest(strategy)
# print(res)
# print("errors: ", res)
# print(res.get("df").columns)
res = run_backtest(strategy)
import pprint
pprint.pprint(res.get("summary"))