Spydertrader,
First, my Thanks to your efforts to assist others.
Your time, effort, and patience is greatly appreciated.
Iâve been playing around with the chartscripts and trying some things out. Since you noted you are working on a new version, I thought you might be interested in some of the ideas. Hereâs the first one.
You can add custom scan columns with â addcolumnstr â.
The custom scan columns can then easily be copied and pasted into an excel spreadsheet.
For example, the fields sent to the commentary window could also be sent to the custom column page. With the calculation of curVol/DUHigh as a custom column, one can easily sort on this field to see not only those stocks in DryUp, but also those that might be just over (ex. 101%) if someone wants to consider those just over the line for trading.
begin
if DUHigh > 0
Then AddScanColumnstr( 'CurVol/HBDU', Formatfloat('0.00%', 1*(curVol/DUHigh) ));
end;
If one can link the streaming price and volume data from their data provider to the spreadsheet, the spreadsheet can automatically calculate the % of LBDU, AVDU, FRV, and Peak. Add some formatting such as having a cell turn green when 100% is reached can provide a visual scan of which stocks have exceeded targeted values.
With the addition of the Unusual Volume Table, one can set a spreadsheet up to calculate real-time estimates during the day of what % of FRV will be reached at EOD.
Including items such as the Stop Offset in the Custom Scan Column enables one to easily add this data to the spreadsheet. Then one can have an easy reference for items like this from the spreadsheet instead of having to check stocks one by one in WealthLab.
Hope these ideas are useful.
First, my Thanks to your efforts to assist others.
Your time, effort, and patience is greatly appreciated.
Iâve been playing around with the chartscripts and trying some things out. Since you noted you are working on a new version, I thought you might be interested in some of the ideas. Hereâs the first one.
You can add custom scan columns with â addcolumnstr â.
The custom scan columns can then easily be copied and pasted into an excel spreadsheet.
For example, the fields sent to the commentary window could also be sent to the custom column page. With the calculation of curVol/DUHigh as a custom column, one can easily sort on this field to see not only those stocks in DryUp, but also those that might be just over (ex. 101%) if someone wants to consider those just over the line for trading.
begin
if DUHigh > 0
Then AddScanColumnstr( 'CurVol/HBDU', Formatfloat('0.00%', 1*(curVol/DUHigh) ));
end;
If one can link the streaming price and volume data from their data provider to the spreadsheet, the spreadsheet can automatically calculate the % of LBDU, AVDU, FRV, and Peak. Add some formatting such as having a cell turn green when 100% is reached can provide a visual scan of which stocks have exceeded targeted values.
With the addition of the Unusual Volume Table, one can set a spreadsheet up to calculate real-time estimates during the day of what % of FRV will be reached at EOD.
Including items such as the Stop Offset in the Custom Scan Column enables one to easily add this data to the spreadsheet. Then one can have an easy reference for items like this from the spreadsheet instead of having to check stocks one by one in WealthLab.
Hope these ideas are useful.
