Welcome to NexusFi: the best trading community on the planet, with over 150,000 members Sign Up Now, It is Free
Genuine reviews from real traders, not fake reviews from stealth vendors
Quality education from leading professional traders
We are a friendly, helpful, and positive community
We do not tolerate rude behavior, trolling, or vendors advertising in posts
We are here to help, just let us know what you need
You'll need to register in order to view the content of the threads and start contributing to our community. It's free for basic access, or support us by becoming an Elite Member -- see if you qualify for a discount below.
-- Big Mike, Site Administrator
(If you already have an account, login at the top of the page)
Find Low of Bar the Last Time a Condition Was True
Ok, I don't use that platform so I can't advise, but I have moved your question to the ThinkOrSwim thread - you should have better chances to get a reply here.
Thank you. That works great for putting the indicator on the chart. How would I use this date in a formula? I want to look back and find the low of the code below.
PPS()."BuySignal" is true and close is greater than MovAvgExponential("length" = 200)."AvgExp"[-1], low;
I am missing a couple of things though. I am trying to setup an autosell feature based on price falling below the code that you provided. Do you know how to best write that? I can't find code that references the present price. I found EntryPrice () to calculate other formulas, but I want to sell based on present price... not close from 1 bar ago.
I think you're asking how to capture the low value for use on the current bar. The general idea is to store it, overwrite it anytime the condition is true, otherwise use the stored value.
The following user says Thank You to JayC for this post:
That worked like a charm! Much appreciated... I put up a different post a minute ago... if you can take a look at that. You'd really be helping me out. Again, thanks a lot!