Skip to content

Commit 27d5c28

Browse files
authored
Merge pull request pinecoders#12 from LucFF/master
FAQ, Home page and Resources minor changes.
2 parents 891be55 + 8c98ee1 commit 27d5c28

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
PineCoders is a [TradingView](https://www.tradingview.com/)-supported group of programmers using TradingView's [Pine Script](https://www.tradingview.com/pine-script-docs/en/v4/Introduction.html) programming language. We help TV members learn Pine, provide tools and resources for beginning as well as pro coders, and collaborate with TradingView to make using Pine indicators and strategies easier for both coders and the at-large TV community.
1717

18-
The [Suggestions For Improvement To Pine](https://trello.com/b/Jmv6c8Cx) Trello board is co-managed by PineCoders and TradingView. This [card](https://trello.com/c/r0jKAKhK) explains how the board works, how any Trello user can comment/vote on suggestions and how to contribute new ideas or concepts to existing or non-existing topics.
18+
The [Suggestions For Improvement To Pine](https://trello.com/b/Jmv6c8Cx) Trello board is co-managed by PineCoders and TradingView. This [card](https://trello.com/c/r0jKAKhK) explains how the board works, how any Trello user can comment/vote on suggestions and how to contribute new ideas to existing or non-existing topics.
1919

2020
We also pilot the [PineCoders](https://www.tradingview.com/u/PineCoders/#published-scripts) TV moderator account, from which we answer questions in the [Pine Script TV chat](https://www.tradingview.com/chat/#BfmVowG1TZkKO235), publish open source tools and examples in Pine, and follow [leading publishers](https://www.tradingview.com/u/PineCoders/#following-people) of predominantly open source scripts on TV, who's public code you can learn a great deal from.
2121

faq_and_code/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -277,11 +277,11 @@ This code shows examples that work and don't work:
277277
study("alertcondition arguments")
278278
279279
// ————— These strings will not work.
280-
// The rsi() value can only be known at compile time and it is a "series",
280+
// The rsi() value can only be known at runtime time and it is a "series",
281281
// so "wrongMsgArg1" becomes a "series string".
282282
wrongMsgArg1 = "RSI value is:" + tostring( rsi(close, 14))
283283
// This does not work because although the result can be calculated at compile time,
284-
// "tostring()" returns an "simple string" (a.k.a. "string"),
284+
// "tostring()" returns a "simple string" (a.k.a. "string"),
285285
// and automatic casting rules do not allow for that type to be cast to "const string".
286286
wrongMsgArg2 = "Enter at: " + tostring(100.3)
287287
// This fails because the condition can only be evaluated at compile time,

resources/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This document provides a list of Pine-related resources and tools.
66

77
**Disclaimer**: While we select the tools and resources mentioned here, we do not endorse any of them and their inclusion here does not imply any guarantee of their worthiness. So please, before you decide to purchase anything, show due diligence and do your own research. PineCoders does not benefit from the adoption of these tools and no links to them contain explicit referral information.
88

9-
> The original version of this list was written by @chrysopoetics, a TradingView member.<br>We are grateful to him for allowing us to maintain it. **Thanks Hermes!**
9+
> The original version of this list was written by [chrysopoetics](https://www.tradingview.com/u/chrysopoetics/), a TradingView member.<br>We are grateful to him for allowing us to maintain it. **Thanks Hermes!**
1010
1111
### Table of Contents
1212

0 commit comments

Comments
 (0)