PureBytes Links
Trading Reference Links
|
composite and indicator # 1
//White Candles
/* Composite */
Filter = O<Ref(L,-1) AND C>O;
AddColumn(C,"CLOSE");
AddColumn(O,"OPEN");
AddToComposite(Filter,"~EDHC","V");
AddToComposite(1,"~COUNT","V");
Buy=0;
/* Exhaustion ? Down Higher Close Indicator*/
B=100*Foreign("~EDHC","V")/Foreign("~COUNT","V");
Plot(B,"EXHAUSTION ? DOWN HIGHER CLOSE=",2,2);
then composite and indicator # 2
//Black Candles
/*Black Candle Composite*/
Filter = C < O;
AddColumn(C,"CLOSE");
AddColumn(O,"OPEN");
AddToComposite(Filter,"~BLACKCANDLES","V");
AddToComposite(1,"~COUNT","V");
/*Black Candle Indicator*/
B=100*Foreign("~BLACKCANDLES","V")/Foreign("~COUNT","V");
Plot(B,"BLACK CANDLES=",16,2);
notice the black candle pattern on Sept. 17,18,19,20. then the big
white candles on the 21.
similar pattern on June 19,20,21 and the 22nd. i thought we might
bottom on the 23rd. was i a day early ?
Don
|