PureBytes Links
Trading Reference Links
|
Hello,
I am not able to use the +dm,-dm and adx in the formula of automatic
analysis. How is it possibile to do?
Thanks.
Ermanno.
If someone is interested, below the formula to find stock with engulfish
pattern
buy= close>open and open<ref(close,-1) and close>ref(open,-1) and
ref(close,-1)<ref(open,-1);
sell=close<open and open>ref(close,-1) and close<ref(open,-1) and
ref(open,-1)<ref(close,-1);
for perfect engulfish pattern:
buy= close>open and open<ref(close,-1) and close>ref(open,-1) and
ref(close,-1)<ref(open,-1) and open<ref(low,-1) and close>ref(high,-1);
sell=close<open and open>ref(close,-1) and close<ref(open,-1) and
ref(open,-1)<ref(close,-1) and open>ref(high, -1) and close<ref(low,-1);
|