PureBytes Links
Trading Reference Links
|
I use the following indicators to show the price reversal of Bollinger Band
penetration:
Name: Upper BB Hookdown
Formula:
UpperBB:= Mov(C,20,S) +(2*(Std(C,20)));
C < UpperBB AND Ref(C,-1) > Ref(UpperBB,-1);
Name: Lower BB Hookup
Formula:
LowerBB:= Mov(C,20,S) -(2*(Std(C,20)));
C > LowerBB AND Ref(C,-1) < Ref(LowerBB,-1);
Question: Is there a way I can predefine the color for each of these
indicators so that when the indicator is selected the color will
automatically appear.
Thanks,
Jim Barone
|