> Simple question. What condition triggers a Bollinger Band alert ??
>From the TS Bollinger band code:
{Alert Criteria}
Condition1 = Plot1 <> Plot2;
If Price > Plot1 AND Condition1 Then
Alert("Price is over the top band")
Else
If Price < Plot2 AND Condition1 Then
Alert("Price is under the bottom band");
|