PureBytes Links
Trading Reference Links
|
. What an excellent "EXPLORE" in 3.58 !!
Here we are able to test the reliability of a stochk versus
various technical analysis criteria !!
Example: How many "bullish Doji" were confirmed and
became "Morning Stars" in the past history of a certain stock?
The answer is
COND1=IIF((ABS(C-O)<0.1*ABS(H-L))AND(C<ref(L,-1)),1,0);
COND11=IIF(REF(COND1,-1)>0 AND C>REF(C,-1) AND C>O and o>ref(c,-
1),1,0);
filter=cond11==1;
numcolumns = 3;
column0 = close;
column1=cum(cond11);
column2=100*CUM(COND11)/cum(cond1);
column0name = "Close";
column1name="confirm";
column2name="%";
column1format = 1.0;
Press "EXPLORE"
and in "%" column you get the percentage of confirmed Doji in the
whole past history of a stock !!!
Magnificent!! I will never pay attention to "DIAS" Doji, the % was
8%.!! I will be a close friend of "TITK", it is 66% reliable.!!
|