Skip to content

Commit 9d9361f

Browse files
committed
Update README.md
1 parent 6348ac3 commit 9d9361f

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# 'lil Bot
22
## The littlest crypto bot
33

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.
57

68
## Requirements:
79

@@ -13,7 +15,7 @@ Extract it to a convenient location.
1315
### Binance Trading Account
1416

1517
[API key](https://www.binance.com/en/support/articles/360002502072)
16-
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.
1719

1820
### NodeJS
1921

@@ -24,8 +26,6 @@ Log in and create a new api key. Beginners should disable withrawls and restrict
2426
[Download](https://ngrok.com/download)
2527
Sign up for an account and follow the instructions. Ngrok should be in the same folder as app.js.
2628

27-
**Important:** The ngrok.exe must reside in the same folder as app.js.
28-
2929
## TradingView Charts
3030

3131
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
3838
``` bash
3939
npm init -y
4040

41-
npm install node-binance-api --save
41+
npm install
4242
```
4343

4444
## Start:
@@ -49,7 +49,7 @@ To start run the following in your terminal.
4949

5050
./ngrok http 80
5151

52-
node app.js
52+
nodemon app.js
5353
```
5454

5555
## Tips
@@ -59,4 +59,4 @@ Ngrok changes your url on startup, so you'll have to copy/paste the new url into
5959
For testing webhooks go to http://localhost:4040 and select "replay". You can feed your bot any
6060
value you want without having to wait for your alerts to be triggered.
6161

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

Comments
 (0)