Platinum Customer
Joined: 1/24/2005 Posts: 195
|
Just wondering if anyone has a chart or can create Volume as a percentage of shares outstanding for SF 5.1?
|
Administration
Joined: 9/30/2004 Posts: 9,187
|
I plotted Volume and Shares Outstanding on the chart, then created a new RealCode indicator by dragging each plot into the code editor. The code looks like this:
'|******************************************************************
'|*** StockFinder RealCode Indicator - Version 5.0 www.worden.com
'|*** Copy and paste this header and code into StockFinder *********
'|*** Indicator:Volume Percentage of Outstanding
'|*** Example: plot = price.close - price.close(1)
'|******************************************************************
'# Volu = chart.Volume.2
'# SO = chart.SharesOutstanding
plot = Volu.value / SO.Value * 100
I attached a chart with the plots and the RealCode indicator which you can download and save to your \\Documents\StockFinder5\babzsak\MyCharts folder.
Attachments: Volume Percent of Outstanding.sfChart - 70 KB, downloaded 795 time(s).
|
Platinum Customer
Joined: 1/24/2005 Posts: 195
|
Thank you so much, exactly what I was looking for.
|
Administration
Joined: 9/30/2004 Posts: 9,187
|
You're welcome.
|