Hi Team,
I am trying to use the following script in a way that the color of the candles will change when candles are "at or closer" to the bottoms and tops. Therefore, can somebody help me add an input field so the ATR Trailing Stop length can be customized (or any other feature that can provide a better result)?
def st = ATRTrailingStop().state;
AssignPriceColor(if st == 1
then GetColor(6)
else if st == 2
then GetColor(5)
else Color.CURRENT);
def bs = !IsNaN(close) and ATRTrailingStop().BuySignal == yes;
def ss = !IsNaN(close) and ATRTrailingStop().SellSignal == yes;
I am trying to use the following script in a way that the color of the candles will change when candles are "at or closer" to the bottoms and tops. Therefore, can somebody help me add an input field so the ATR Trailing Stop length can be customized (or any other feature that can provide a better result)?
def st = ATRTrailingStop().state;
AssignPriceColor(if st == 1
then GetColor(6)
else if st == 2
then GetColor(5)
else Color.CURRENT);
def bs = !IsNaN(close) and ATRTrailingStop().BuySignal == yes;
def ss = !IsNaN(close) and ATRTrailingStop().SellSignal == yes;