Download software Tutorial videos
Subscription & data-feed pricing Class schedule


New account application Trading resources
Margin rates Stock & option commissions

Attention: Discussion forums are read-only for extended maintenance until further notice.
Welcome Guest, please sign in to participate in a discussion. Search | Active Topics |

Highlight a Candle With a Dot? Rate this Topic:
Previous Topic · Next Topic Watch this topic · Print this topic ·
omran_indraws
Posted : Friday, June 16, 2017 5:24:24 PM
Registered User
Joined: 6/16/2017
Posts: 1

hi Bruce

 

I want to highlight a candle on daily tf if it met this condition

((H-C1)/C1)>0.15 

 

I did it , but i want to highlight only the candle that met the condition as the indicator i made is showing dotson all candles ! and it put dot above candle which met condition.

 

how can i show a dot on candle that met the condition only !

 

https://snag.gy/f8NF4b.jpg

diceman
Posted : Friday, June 16, 2017 5:46:46 PM
Registered User
Joined: 1/28/2005
Posts: 6,049

Try this:

 

ABS(((H-C1)/C1)>0.15)*H

 

use regular PCF not % true.

Use price scale.

 

 

 

Thanks

 

 

 

Bruce_L
Posted : Wednesday, June 21, 2017 9:59:07 AM


Worden Trainer

Joined: 10/7/2004
Posts: 65,138

The formula given by diceman should work, but it will also plot dots at zero. You can get around this by using division to create a divide by zero error so the dots don't plot at all.

H / ABS(H > 1.15 * C1)

Or possibly:

IIF(H > 1.15 * C1, H, 1 / 0)



-Bruce
Personal Criteria Formulas
TC2000 Support Articles
Users browsing this topic
Guest-1

Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.