The indicator is PriceChannel
this picture pretty much explains it...
https://gyazo.com/ad776e4ee8df16dd4eae3fc45a64dd15
What i need is a label and arrow when the candle touches the pricechannel.
Label should read DOWN when the pricechannel line is coming down and
the candle touches the pricechannel line hitting the top as you see in the above picture.
And also the reverse as you see in the picture below.
https://gyazo.com/fededd8213d0737aaca8b0972ea0f4fb
Thank you
this is the indicator source.
#
# TD Ameritrade IP Company, Inc. (c) 2007-2022
#
input displace = 0;
input length = 20;
plot LowerBand = Lowest(low[-displace + 1], length);
LowerBand.SetDefaultColor(GetColor(8));
plot UpperBand = Highest(high[-displace + 1], length);
UpperBand.SetDefaultColor(GetColor(1));
this picture pretty much explains it...
https://gyazo.com/ad776e4ee8df16dd4eae3fc45a64dd15
What i need is a label and arrow when the candle touches the pricechannel.
Label should read DOWN when the pricechannel line is coming down and
the candle touches the pricechannel line hitting the top as you see in the above picture.
And also the reverse as you see in the picture below.
https://gyazo.com/fededd8213d0737aaca8b0972ea0f4fb
Thank you
this is the indicator source.
#
# TD Ameritrade IP Company, Inc. (c) 2007-2022
#
input displace = 0;
input length = 20;
plot LowerBand = Lowest(low[-displace + 1], length);
LowerBand.SetDefaultColor(GetColor(8));
plot UpperBand = Highest(high[-displace + 1], length);
UpperBand.SetDefaultColor(GetColor(1));
Last edited: