Registered User Joined: 4/18/2018 Posts: 6
|
Dear Trainer,
I am looking to add a dot on my price chart when three MA all converge at the same candle: Preferably on color for moving up and for down. I have been searching all over the forum and tried to connect different threads in to a PCF, but can't get something to work. Can you help me, please
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
I am going to assume you mean something like this for the cross up.
IIF(AVGC10 > AVGC20 AND AVGC20 > AVGC30 AND AVGC10.1 < AVGC20.1 AND AVGC20.1 < AVGC30.1, AVGC10, 1 / 0)
And something like this for the cross down.
IIF(AVGC10 < AVGC20 AND AVGC20 < AVGC30 AND AVGC10.1 > AVGC20.1 AND AVGC20.1 > AVGC30.1, AVGC10, 1 / 0)
You would add two Custom PCF Indicators to the chart. Both Custom PCF Indicators would be plotted using the Dots Plot Style in the same pane and scale as price. One Custom PCF Indicator would use the first formula and one color and the second Custom PCF Indicator would use the second formula and a different color.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
Registered User Joined: 4/18/2018 Posts: 6
|
Dear Bruce, Thanks you so much for a quick reply! Have a great evening
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
You're welcome.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|