Skip to content
This repository was archived by the owner on Aug 31, 2023. It is now read-only.

Commit 6b247bd

Browse files
committed
Add example image
1 parent f2452f2 commit 6b247bd

File tree

5 files changed

+9
-2
lines changed

5 files changed

+9
-2
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# Change Log
22

3+
## [0.1.1] - 2018-09-10
4+
- Missing example image
5+
36
## [0.1.0] - 2018-09-10
47
- Initial release

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
This extension adds Pine Script Syntax Hightlighting for VS Code
66

7-
\!\[feature X\]\(images/feature-x.png\)
7+
\!\[feature X\]\(images/pine_example.png\)
88

99
## Pull requests
1010

example.pine

+4
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,7 @@ macd = fastMA - slowMA
99
signal = sma(macd, 9)
1010
plot(macd, color=blue)
1111
plot(signal, color=orange)
12+
n1 = input(90, "Setting 1")
13+
n2 = input(6, "Setting 2")
14+
15+
testfunction(src) => ema(n1, n2)

images/pine_example.png

29.2 KB
Loading

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "pine-script-syntax-highlighting",
33
"displayName": "Pine Script Syntax Highlighting",
44
"description": "Syntax Highlighting for Pine Script",
5-
"version": "0.1.0",
5+
"version": "0.1.1",
66
"publisher": "leifcr",
77
"license": "MIT",
88
"engines": {

0 commit comments

Comments
 (0)