Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
4.4k views
in Technique[技术] by (71.8m points)

pine script - How to make a function if ADX is moving up or down

I'm a very novice pinescript programmer, but trying to do this:

If ADX (10,10) changes direction then SellLong

SellLong = ChangeDirection(ADX(10,10))

Although ChangeDirection doesn't seem to be a function. Is ADX a built-in function? Can someone assist on this? thanks


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

ADX is comprised in the dmi() function.
This function returns 3 values:

  • Positive Directional Movement (+DI)
  • Negative Directional Movement (-DI)
  • Average Directional Movement Index (ADX)

This is what you need:

//@version=4
study("My Script")

[di_pos, di_neg, adx] = dmi(10, 10)

SellLong = change(adx) > 0 ? true : false

plot(SellLong ? 1 : 0)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...