Thank you much!Moved your post here. You will find many interesting /fascinating ways to create the Bollinger band clouds.
Here is a simple one to start you off:
https://usethinkscript.com/threads/...el-scan-for-thinkorswim.762/page-4#post-67959
I used this code from that thread(thanks to the author), and shaded with a color of my choosing(GRAY)
---------------------------------
#
# TD Ameritrade IP Company, Inc. (c) 2007-2019
#
input price = close;
input displace = 0;
input length = 20;
input Num_Dev_Dn = -2.0;
input Num_Dev_up = 2.0;
input averageType = AverageType.Simple;
def sDev = stdev(data = price[-displace], length = length);
plot MidLine = MovingAverage(averageType, data = price[-displace], length = length);
plot LowerBand = MidLine + num_Dev_Dn * sDev;
plot UpperBand = MidLine + num_Dev_Up * sDev;
LowerBand.SetDefaultColor(GetColor(0));
MidLine.SetDefaultColor(GetColor(1));
UpperBand.SetDefaultColor(GetColor(5));
AddCloud(UpperBand, LowerBand, Color.Green, Color.Green);
#AddCloud(LowerBand, Midline, Color.Red, Color.Red);
-----------------------------