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 |

Is there a way? Rate this Topic:
Previous Topic · Next Topic Watch this topic · Print this topic ·
bryceln
Posted : Wednesday, January 24, 2018 2:46:33 PM
Registered User
Joined: 1/10/2013
Posts: 91

Is there a way to have a watchlist column that displays the high of a candle when an indicator passes a specific criteria.  Example:

Volume spikes 2 times its moving average 3 bars ago.  Would there be a way to see the price high of that candle in a watchlist column.

StockGuy
Posted : Wednesday, January 24, 2018 2:59:38 PM

Administration

Joined: 9/30/2004
Posts: 9,187

Yes, you could use the following formula but it will only show the High if the Volume spike happened exactly 2 bars ago.

IIF(V3 > AVGV50.3 *2, H3, 0)

Bruce_L
Posted : Wednesday, January 24, 2018 3:00:42 PM


Worden Trainer

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

Yes, you can do this. Let's say you are comparing the current volume to the 21 period simple moving average of volume from 3 bars ago.

IIF(V > 0 AND V >= 2 * AVGV21.3, H, 1 / 0)

Or volume 3 bars ago was at least twice its 30 period simple moving average from 3 bars ago.

IIF(V3 > 0 AND V3 >= 2 * AVGV30.3, H3, 1 / 0)



-Bruce
Personal Criteria Formulas
TC2000 Support Articles
bryceln
Posted : Wednesday, January 24, 2018 3:06:31 PM
Registered User
Joined: 1/10/2013
Posts: 91

great thanks alot!!!!  I have another formula that I will be playing with as far as this is concerned so I will use this for the foundation.   

Bruce_L
Posted : Wednesday, January 24, 2018 3:09:12 PM


Worden Trainer

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

You're welcome. Our pleasure.



-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.