Skip to content

Commit

Permalink
[pre-release] v3.4.0-beta-2
Browse files Browse the repository at this point in the history
- Snippets for built-in variables, functions and constants updated to Pinescript release June 2024.
- Rework of hover popup presentation.
- Built-in types for hover popup added.
- Popup window border become more visible in several dark themes.
- Choices and default values for snippets updated.
- Typo and bug fixes for snippets and hover popups.
  • Loading branch information
salbert11 committed Jun 6, 2024
1 parent 7b0ec1b commit 23675b3
Show file tree
Hide file tree
Showing 25 changed files with 3,764 additions and 2,300 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Change Log
#### **3.4.0**

*06.06.2024 **Update***
- Snippets for built-in variables, functions and constants updated to Pinescript release June 2024.
- Rework of hover popup presentation.
- Built-in types for hover popup added.
- Popup window border become more visible in several dark themes.
- Choices and default values for snippets updated.
- Typo and bug fixes for snippets and hover popups.

---
#### **3.3.1**

*18.04.2024 **Update***
Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,15 @@
## Language support for Pine Script V5 with Syntax Highlighting & Snippets

## Release Notes
#### **3.3.1**
#### **3.4.0**

*18.04.2024 **Update***
- Snippets for built-in variables, functions and constants updated to Pinescript release March 2024.
- Hover popup descriptions for overloaded functions added.
- Theme color minor fixed.
*06.06.2024 **Update***
- Snippets for built-in variables, functions and constants updated to Pinescript release June 2024.
- Rework of hover popup presentation.
- Built-in types for hover popup added.
- Popup window border become more visible in several dark themes.
- Choices and default values for snippets updated.
- Typo and bug fixes for snippets and hover popups.

---

Expand All @@ -18,9 +21,6 @@

PineScript Helper provides language support for PineScript, the scripting language used in TradingView. This extension enhances the coding experience by offering syntax highlighting, snippets, and hovers to provide reference manual information for PineScript scripts.

### What is PineScript?
PineScript is a domain-specific scripting language developed by TradingView. It is primarily used to create custom technical indicators, strategies, and alerts within the TradingView platform. PineScript is specifically designed for financial market analysis and allows traders to create their own indicators and strategies to automate trading decisions.

---

## Features
Expand Down Expand Up @@ -150,4 +150,4 @@ This extension is released under the [MIT License](./LICENSE.md).

---

*Version 3.3.1*
*Version 3.4.0*
16 changes: 11 additions & 5 deletions SNIPPET-LIST.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*Version 3.3.1*
*Version 3.4.0*
# Snippet's Prefix's

- [Snippet's Prefix's](#snippets-prefixs)
Expand Down Expand Up @@ -73,6 +73,12 @@
|`session.ispostmarket` |
|`session.ispremarket` |
|`strategy.account_currency` |
|`strategy.avg_losing_trade` _**new!**_ |
|`strategy.avg_losing_trade_percent` _**new!**_ |
|`strategy.avg_trade` _**new!**_ |
|`strategy.avg_trade_percent` _**new!**_ |
|`strategy.avg_winning_trade` _**new!**_ |
|`strategy.avg_winning_trade_percent` _**new!**_ |
|`strategy.closedtrades` |
|`strategy.equity` |
|`strategy.eventrades` |
Expand All @@ -96,7 +102,7 @@
|`strategy.netprofit_percent` |
|`strategy.openprofit_percent` |
|`strategy.opentrades` |
|`strategy.opentrades.capital_held` _**new!**_ |
|`strategy.opentrades.capital_held` |
|`strategy.position_avg_price` |
|`strategy.position_entry_name` |
|`strategy.position_size` |
Expand All @@ -107,7 +113,7 @@
|`syminfo.currency` |
|`syminfo.description` |
|`syminfo.employees` |
|`syminfo.expiration_date` _**new!**_ |
|`syminfo.expiration_date` |
|`syminfo.industry` |
|`syminfo.minmove` |
|`syminfo.mintick` |
Expand Down Expand Up @@ -474,14 +480,14 @@
|`str.match` |
|`str.pos` |
|`str.replace` |
|`str.repeat` _**new!**_ |
|`str.repeat` |
|`str.replace_all` |
|`str.split` |
|`str.startswith` |
|`str.substring` |
|`str.tonumber` |
|`str.tostring` |
|`str.trim` _**new!**_ |
|`str.trim` |
|`str.upper` |
|`strategy.cancel` |
|`strategy.cancel_all` |
Expand Down
Binary file modified images/highlight.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/hover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/pine-themes.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/snippet.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"icon": "images/pineicon.png",
"publisher": "salbert11",
"license": "MIT",
"version": "3.3.1",
"version": "3.4.0-beta-2",
"engines": {
"vscode": "^1.62.0"
},
Expand Down
Loading

0 comments on commit 23675b3

Please sign in to comment.