· 4 years ago · Jun 21, 2021, 07:06 PM
1<?php
2
3/*
4
5Put this into your tradeingview alert body/content:
6
7 {
8 "LiquidBotAlert": {
9 "LiquidBotSettings": "(Slow, 27, 0.9, 0)",
10 "ticker": "{{ticker}}",
11 "orderAction": "{{strategy.order.action}}",
12 "orderContracts": "{{strategy.order.contracts}}",
13 "positionSize": "{{strategy.position_size}}",
14 "price": "{{strategy.order.price}}"
15 }
16 }
17*/
18
19 $emailAddress = '909000000@mms.att.net'; //your phone number for email to sms alerts
20 $apiKeY = 'yourapikey';
21 $secretKey = 'yoursecretkey';
22
23 $symbol = 'ETHBTC';
24
25 $currencyBase = 'ETH';
26 $currencyQuote = 'BTC';
27
28
29?>