how to modify
Posted: Tue Dec 13, 2022 7:13 am
I am a beginner of the PINE language. Can you please advise me on how to modify the following code so that it can be successfully compiled?
Code: Select all
//@version=5
indicator("dg")
src = input(close, "Source")
ma = ta.sma(src, 20)
max=0
for i = 1 to 999
if ma[i] > ma
max=i
plot(max)