You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,9 @@
1
1
# 'lil Bot
2
2
## The littlest crypto bot
3
3
4
-
Don't you wish you could use TrandingView charts, strategies and indicators to trade REAL crypto? You can! Using TradingView alerts. When an alert is triggered on your chart a webhook contacts this app.js script and tells it to place a buy/sell market order on the binance exchange.
4
+
Don't you wish you could use TrandingView charts, strategies and indicators to trade REAL crypto? You can! Using TradingView alerts, this repo, and Binance's robust API.
5
+
6
+
When an alert is triggered on your chart a webhook contacts this app.js script and tells it to place a buy/sell market order on the binance exchange.
5
7
6
8
## Requirements:
7
9
@@ -13,7 +15,7 @@ Extract it to a convenient location.
Log in and create a new api key. Beginners should disable withrawls and restrict access to your device's external ip. Copy/paste your info into options.json.
18
+
Log in and create a new api key. Beginners should disable withdrawls. Remember to restrict access to your device's external ip. Copy/paste your info into options.json.
17
19
18
20
### NodeJS
19
21
@@ -24,8 +26,6 @@ Log in and create a new api key. Beginners should disable withrawls and restrict
24
26
[Download](https://ngrok.com/download)
25
27
Sign up for an account and follow the instructions. Ngrok should be in the same folder as app.js.
26
28
27
-
**Important:** The ngrok.exe must reside in the same folder as app.js.
28
-
29
29
## TradingView Charts
30
30
31
31
To use webhooks we need TradingView **Pro** ($10.95/month).
@@ -38,7 +38,7 @@ After the pre-requisits are installed open a terminal in the cloned repository a
38
38
```bash
39
39
npm init -y
40
40
41
-
npm install node-binance-api --save
41
+
npm install
42
42
```
43
43
44
44
## Start:
@@ -49,7 +49,7 @@ To start run the following in your terminal.
49
49
50
50
./ngrok http 80
51
51
52
-
node app.js
52
+
nodemon app.js
53
53
```
54
54
55
55
## Tips
@@ -59,4 +59,4 @@ Ngrok changes your url on startup, so you'll have to copy/paste the new url into
59
59
For testing webhooks go to http://localhost:4040 and select "replay". You can feed your bot any
60
60
value you want without having to wait for your alerts to be triggered.
61
61
62
-
To use the example bollinger ribbon pine script just copy/paste it into the tradingview pine editor at the bottom of your chart. By clicking 'new' a drop down menu displays many default scripts you can easily clone and edit to create your own custom indicators.
62
+
To use the example pine scripts just copy/paste them into the tradingview pine editor at the bottom of your chart. By clicking 'new' a drop down menu displays many default scripts you can easily clone and edit to create your own custom indicators.
0 commit comments