- ago
Is it possible to create watchlists that display data such as price, volume, p/e, yield, etc? I'm thinking the symbols would be in rows and the data in columns. (New to WL)
0
222
2 Replies

Reply

Bookmark

Sort
- ago
#1
Price and volume can already be seen in the Data Manager (Ctrl+M) if you highlight any DataSet.

The other fields are not visible but we can think of ways they could be added:

1. #FeatureRequest for adding them to the Data Manager, maybe as a separate "Event" tab?
2. Through custom programming - https://www.wealth-lab.com/Support/Concierge
3. As a script-based DIY solution which involves running a C# Strategy that would scan DataSets and print out the data table to the debug log etc.
0
- ago
#2
QUOTE:
display data such as ... p/e, yield, etc?

The computed values (such as P/E, yield, trailing PEG) you are going to have to compute yourself in C# code, but it's not too hard. There are fundamental functions (e.g. FundamentalRatio) that can aggregate these data (such as price and earnings) into moving quarters or years so you can calculate them (e.g. Trailing Twelve Months, TTM, etc).

I'm assuming you're an investor (not a trader), and you want to export this worked up data into another application for further analysis. You can have your C# code write these results out to the Windows clipboard and have Excel or your stat package pick it up from there.
0

Reply

Bookmark

Sort