- ago
Hi, I just subscribed to Norgate and everything works as expected. However, I wanted to try to create sector specific watchlists in WL and cannot find a way to do so. I know that the Norgate data does have GICS codes but it seems they are not available in WL. Has anyone tried this? Any advice? I have reached out to Norgate to see what they have to say.
Thanks!
0
149
Solved
4 Replies

Reply

Bookmark

Sort
Cone8
 ( 2.75% )
- ago
#1
They'll likely just point you to the WealthLab integration section on their site, where you'll find the answer!
https://norgatedata.com/wealth-lab-usage.php
0
- ago
#2
yes, i already looked there and there was no answer to my specific q. I will do some more research.
0
Cone8
 ( 2.75% )
- ago
#3
This worked for me, based on the info there -

CODE:
using WealthLab.Backtest; using WealthLab.Core; using System.Collections.Generic; using WealthLab.Norgate; namespace WealthScript2 { public class MyStrategy : UserStrategyBase { public override void Initialize(BarHistory bars) {          var cls = Metadata.Classification(bars.Symbol, "GICS");          WriteToDebugLog($"{bars.Symbol} GICS:{cls}");          var indexsymbol = Metadata.CorrespondingIndustryIndex(bars.Symbol, "$SP1500", 4, "PR");          WriteToDebugLog($"{bars.Symbol} IndexSymbol: {indexsymbol}");       } //execute the strategy rules here, this is executed once for each bar in the backtest history public override void Execute(BarHistory bars, int idx) { } } }
1
Best Answer
- ago
#4
Thanks Cone, just saw your post! Yes, I went back to the norgate usage page and then was able to write some code that retrieves all 4 levels of the GICS code for a symbol.
0

Reply

Bookmark

Sort