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)
Is there a way to only display MACD if the current color has been the same color for longer than 30 minues?
I tried to add a time stamp and flag that would switch once the direction changed, but I could not figure out how to make it do what I wanted.
trackdirectionC = 0
trackdirectionP = 0
timerstart = tim...
Adrian Ortiz
Votes: 0
Answers: 1
How to find the first value of Bollinger Bands when bar open
Actually, the Bollinger Bands code is:
//@version=4
study(title="AAAA", shorttitle="AAAA", overlay=true)
len = 5
multi = 2
bb5med = sma(close, len)
devBB5 = mult2 * stdev(close,...
CandyG80
Votes: 0
Answers: 1
How to find data of wma at the open position?
I have this plot:
WMA_point = wma(close, 9)
plot(WMA_point, title='WMA', color=#000000)
It makes a line on the chart. When the price goes up, the line moves up, and vice versa, when the price goes d...
CandyG80
Votes: 0
Answers: 3
dots indicator not changing position of dot, flutter
I have used the following code for my three walkthrough pages, when I click dot it navigates to the page but not the position(index) of the dot indicator. After navigation the dot position comes back ...
Imad Ud Din Khan
Votes: 0
Answers: 1