python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Incorporating open-source indicator into your strategy that pine doesn't have a built-in function for
I'm trying to create a pine strategy making use of the Chandelier Exit indicator. CE indicator plots a "Buy" and "Sell" notice on the chart at optimal conditions. How can I get my ...
JaCrispy
Votes: 0
Answers: 1
The script calls alert after 2 candles after the condition to buy triggered. How do I fix the delay?
The VuManChu Cipher B + Divergences indicator script shows the buySignalDiv condition on the chart as a big green dot, but the alert is triggered only after 2 bars confirmation.
here is example of ale...
SomeUser
Votes: 0
Answers: 1
How to calculate difference of condition close and current close for all occurences of the condition
con = ta.barssince(ta.rsi(close, 14) > 20) == 1
var flag = false
if ta.barssince(ta.ema(close, 50) > ta.ema(close, 200)) == 1
flag := true
if ta.barssince(ta.ema(close, 50) < ta.ema(cl...
bbnm
Votes: 0
Answers: 1
PineScript: Barcolor based on Input
Complete newbie looking for help.
Currently I color my bars using a simple code.
barclr = input(false, title='(Off) Color2 or (On) Color1')
barcolor(barclr ? barcolor2 : barcolor1)
I now want to colo...
Rajah Saheb
Votes: 0
Answers: 1