switchfire
Member
Hello,
I've built a very basic study to show the volume of up to 2 specific chosen options. I don't know how useful this might be. If anyone has any suggestions or ideas I'm willing to listen. It would be cool if there were a way to sum of the volume of all calls or puts for a specific expiration. Or maybe add the volume for entered strike + 3 strikes above or below. I don't know if any of this is possible. Anyways just thought I'd share.
https://tos.mx/RIIAst4
This shows the calls (blue) and puts (red) for Monday, 10 Feb 2020 332c/p
(i've done a simple modification to the plot which anyone can apply in settings)
I've built a very basic study to show the volume of up to 2 specific chosen options. I don't know how useful this might be. If anyone has any suggestions or ideas I'm willing to listen. It would be cool if there were a way to sum of the volume of all calls or puts for a specific expiration. Or maybe add the volume for entered strike + 3 strikes above or below. I don't know if any of this is possible. Anyways just thought I'd share.
Code:
#Option_Vol - Simple Volume Histagram for up to 2 Options
#Created by Switchfire
#v1.0 08FEB2020
declare lower;
input Option1 = "";
input Option2 = "";
plot Vol1 = volume(Option1);
plot Vol2 = volume(Option2);
Vol1.SetPaintingStrategy(PaintingStrategy.HISTOGRAM);
Vol2.SetPaintingStrategy(PaintingStrategy.HISTOGRAM);
Vol2.SetDefaultColor(GetColor(5));
#End Script
https://tos.mx/RIIAst4
This shows the calls (blue) and puts (red) for Monday, 10 Feb 2020 332c/p
(i've done a simple modification to the plot which anyone can apply in settings)
Last edited: