Welcome to NexusFi: the best trading community on the planet, with over 200,000 members Sign Up Now for 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 -- discounts are available after registering.
-- Big Mike, Site Administrator
(If you already have an account, login at the top of the page)
def datah = (if FullK >= FullK[1] and FullK > FullK[-1] and FullD > 45 then high else Double.NaN);
def dataL = (if FullK <= FullK[1] and FullK < FullK[-1] and FullD < 55 then low else Double.NaN);
plot xdatah = datah ;
plot xdatal = dataL;
def sh = if !IsNaN(xdatah) then high else Double.NaN;
def sl = if !IsNaN(xdatal) then low else Double.NaN;
input showhilowline = yes;
plot stochupcd = if showhilowline == no then Double.NaN else if stochh == 1 then sh + .01 else Double.NEGATIVE_INFINITY;
stochupcd.EnableApproximation();
stochupcd.AssignValueColor(Color.YELLOW);
stochupcd.HideBubble();
plot stochdowncd = if showhilowline == no then Double.NaN else if stochl == 1 then sl - .02 else Double.NEGATIVE_INFINITY;
stochdowncd.EnableApproximation();
stochdowncd.AssignValueColor(Color.YELLOW);
stochdowncd.HideBubble();
Can you help answer these questions from other members on NexusFi?