| thegreatnews 16 posts
 msg #159322
 - Ignore thegreatnews
 | 7/23/2022 7:58:56 PM 
 Hello there,
 can someone please tell me how do i create an bollingerbandwidth scan based upon the Ema and Open price?
 set{ub, (open,20)}
 set{lb, (open,20)}
 set{bDiff, Upper Bollinger Band(ub, 2) - Lower Bollinger Band(lb, 2)}
 
 Thankyou sincerely,
 
 
 | 
| compound_gains 225 posts
 msg #159335
 - Ignore compound_gains
 | 7/25/2022 9:29:51 AM 
 Start here...
 https://www.stockfetcher.com/help/Custom-Bollinger-Bands/100359
 
 
 | 
| thegreatnews 16 posts
 msg #159336
 - Ignore thegreatnews
 | 7/25/2022 8:25:18 PM 
 Thankyou
 
 
 | 
| thegreatnews 16 posts
 msg #159393
 - Ignore thegreatnews
 | 8/4/2022 8:35:43 PM 
 so like this? for bollinger band (20,2)
 am i heading in the right direction? thankyou again,
 what does the '10' stand for?
 
 set{my_avg, CEMA(20,10)}
 set{sigma2, cstddev(20,10) * 2.0}
 set{upper_band, my_avg + sigma2}
 set{lower_band, my_avg- sigma2}
 
 OR
 
 set{my_avg, CEMA(bollinger band(20,2),10)}
 set{sigma2, cstddev(bollinger band(20,2),10) * 2.0}
 set{upper_band, my_avg + sigma2}
 set{lower_band, my_avg- sigma2}
 
 
 
 | 
| compound_gains 225 posts
 msg #159402
 - Ignore compound_gains
 | 8/5/2022 6:50:38 PM 
 Giving it a try gets you kudos. What about this?
 
 
 
 
 And you can add different filters to be more specific in what you might be searching for.
 
 
 
 | 
| thegreatnews 16 posts
 msg #159405
 - Ignore thegreatnews
 | 8/5/2022 9:21:06 PM 
 Thankyou so much!!
 
 
 |