PureBytes Links
Trading Reference Links
|
hello to everyone,
does anyone have pattern formula's to contribute to the group.
example of pattern formulas:
1. Key reversal : (c > ref(c,-1) and (L < ref(L,-1) and ( c < h )));
Paste into Indicator Builder;
// Key Reversal
maxgraph=8;
kr = (c > ref( c,-1) and (L < ref( L,-1) and (c < h )));
barcolor = iif( kr, 4,6 );
graph0 = c;
graph0style = 128;
graph0barcolor = valuewhen ( barcolor != 0, barcolor );
this is set to a white background color.
Anthony
|