You need to identify the bar index where the highest bar occured, then identify the high and bollinger value at that bar. I am pretty sure that you can't do this in the wizard, will probably have to manually edit.
use
High[HighestBar(High, int period)]
Bollinger(double numStdDev, int period).Upper[HighestBar(High, int period)]
for example
if(High[HighestBar(High, int period)] < Bollinger(double numStdDev, int period).Upper[HighestBar(High, int period)])
{do this super secret magical thing that is going to make me rich and everyone else will still be broke}
|